pub struct GetValidationKeyParamsBuilder<S: State = Empty> { /* private fields */ }
Expand description
Use builder syntax to set the inputs and finish with build()
.
Implementations§
Source§impl<S: State> GetValidationKeyParamsBuilder<S>
impl<S: State> GetValidationKeyParamsBuilder<S>
Sourcepub fn build(self) -> GetValidationKeyParamswhere
S: IsComplete,
pub fn build(self) -> GetValidationKeyParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn key_id(self, value: String) -> GetValidationKeyParamsBuilder<SetKeyId<S>>where
S::KeyId: IsUnset,
pub fn key_id(self, value: String) -> GetValidationKeyParamsBuilder<SetKeyId<S>>where
S::KeyId: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for GetValidationKeyParamsBuilder<S>
impl<S> RefUnwindSafe for GetValidationKeyParamsBuilder<S>
impl<S> Send for GetValidationKeyParamsBuilder<S>
impl<S> Sync for GetValidationKeyParamsBuilder<S>
impl<S> Unpin for GetValidationKeyParamsBuilder<S>
impl<S> UnwindSafe for GetValidationKeyParamsBuilder<S>
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