MindFlavor / AzureSDKForRust

Microsoft Azure SDK for Rust
http://mindflavor.github.io/AzureSDKForRust
Apache License 2.0
160 stars 62 forks source link

Allow ConsistencyLevelSupport to borrow (do not take ownership) #282

Open MindFlavor opened 4 years ago

MindFlavor commented 4 years ago

Right now the trait takes ownership of the ConsistencyLevel field. This is not ideal: it might be better to accept a Into<Cow<...>> or similar.