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