pub struct UpdateSigningKeyParams {
pub key_id: String,
pub modify_signing_key_dto: ModifySigningKeyDto,
}Expand description
struct for passing parameters to the method
KeyLinkApi::update_signing_key
Fields§
§key_id: StringThe unique identifier for the signing key provided by Fireblocks
modify_signing_key_dto: ModifySigningKeyDtoImplementations§
Source§impl UpdateSigningKeyParams
impl UpdateSigningKeyParams
Sourcepub fn builder() -> UpdateSigningKeyParamsBuilder
pub fn builder() -> UpdateSigningKeyParamsBuilder
Create an instance of UpdateSigningKeyParams using the builder syntax
Trait Implementations§
Source§impl Clone for UpdateSigningKeyParams
impl Clone for UpdateSigningKeyParams
Source§fn clone(&self) -> UpdateSigningKeyParams
fn clone(&self) -> UpdateSigningKeyParams
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 moreAuto Trait Implementations§
impl Freeze for UpdateSigningKeyParams
impl RefUnwindSafe for UpdateSigningKeyParams
impl Send for UpdateSigningKeyParams
impl Sync for UpdateSigningKeyParams
impl Unpin for UpdateSigningKeyParams
impl UnsafeUnpin for UpdateSigningKeyParams
impl UnwindSafe for UpdateSigningKeyParams
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