pub struct DeleteClientBuilder {
client_id: Option<Uuid>,
version: Option<Option<u32>>,
/* private fields */
}
Expand description
Builder for DeleteClient
.
Fields§
§client_id: Option<Uuid>
§version: Option<Option<u32>>
Implementations§
Source§impl DeleteClientBuilder
impl DeleteClientBuilder
pub fn client_id(&mut self, value: Uuid) -> &mut Self
pub fn version(&mut self, value: Option<u32>) -> &mut Self
Sourcepub fn build(&self) -> Result<DeleteClient, BuilderError>
pub fn build(&self) -> Result<DeleteClient, BuilderError>
Sourcefn create_empty() -> Self
fn create_empty() -> Self
Create an empty builder, with all fields set to None
or PhantomData
.
Trait Implementations§
Source§impl Clone for DeleteClientBuilder
impl Clone for DeleteClientBuilder
Source§fn clone(&self) -> DeleteClientBuilder
fn clone(&self) -> DeleteClientBuilder
Returns a copy of the value. Read more
1.0.0 · 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 DeleteClientBuilder
impl !RefUnwindSafe for DeleteClientBuilder
impl !Send for DeleteClientBuilder
impl !Sync for DeleteClientBuilder
impl Unpin for DeleteClientBuilder
impl !UnwindSafe for DeleteClientBuilder
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