pub struct UnfollowGroupBuilder {
group_id: Option<Uuid>,
/* private fields */
}
Expand description
Builder for UnfollowGroup
.
Fields§
§group_id: Option<Uuid>
Implementations§
Source§impl UnfollowGroupBuilder
impl UnfollowGroupBuilder
pub fn group_id<VALUE: Into<Uuid>>(&mut self, value: VALUE) -> &mut Self
Sourcepub fn build(&self) -> Result<UnfollowGroup, BuilderError>
pub fn build(&self) -> Result<UnfollowGroup, 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 UnfollowGroupBuilder
impl Clone for UnfollowGroupBuilder
Source§fn clone(&self) -> UnfollowGroupBuilder
fn clone(&self) -> UnfollowGroupBuilder
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 UnfollowGroupBuilder
impl !RefUnwindSafe for UnfollowGroupBuilder
impl !Send for UnfollowGroupBuilder
impl !Sync for UnfollowGroupBuilder
impl Unpin for UnfollowGroupBuilder
impl !UnwindSafe for UnfollowGroupBuilder
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