pub struct KeyClientSignOptions<'a> {
pub key_version: Option<String>,
pub method_options: ClientMethodOptions<'a>,
}Expand description
Options to be passed to KeyClient::sign()
Fields§
§key_version: Option<String>The version of the key.
method_options: ClientMethodOptions<'a>Allows customization of the method call.
Trait Implementations§
Source§impl<'a> Clone for KeyClientSignOptions<'a>
impl<'a> Clone for KeyClientSignOptions<'a>
Source§fn clone(&self) -> KeyClientSignOptions<'a>
fn clone(&self) -> KeyClientSignOptions<'a>
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for KeyClientSignOptions<'a>
impl<'a> Debug for KeyClientSignOptions<'a>
Source§impl<'a> Default for KeyClientSignOptions<'a>
impl<'a> Default for KeyClientSignOptions<'a>
Source§fn default() -> KeyClientSignOptions<'a>
fn default() -> KeyClientSignOptions<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for KeyClientSignOptions<'a>
impl<'a> !RefUnwindSafe for KeyClientSignOptions<'a>
impl<'a> Send for KeyClientSignOptions<'a>
impl<'a> Sync for KeyClientSignOptions<'a>
impl<'a> Unpin for KeyClientSignOptions<'a>
impl<'a> UnsafeUnpin for KeyClientSignOptions<'a>
impl<'a> !UnwindSafe for KeyClientSignOptions<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more