You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update remote_encryption builder to take encryption object instead of option (#2127)
In builder pattern, it is better to take the `Object` itself instead of
`Option<Object>`. So
```rust
pub fn remote_encryption(mut self, encryption_context: Option<EncryptionContext>) -> Builder<T> {}
```
changed to
```rust
pub fn remote_encryption(mut self, encryption_context: EncryptionContext) -> Builder<T> {}
```
This follows the existing practices, and consistent with the code.
0 commit comments