pub struct FollowCustomListBuilder {
list_id: Option<Uuid>,
/* private fields */
}
Expand description
Builder for FollowCustomList
.
Fields§
§list_id: Option<Uuid>
CustomList ID.
Implementations§
Source§impl FollowCustomListBuilder
impl FollowCustomListBuilder
Sourcepub fn build(&self) -> Result<FollowCustomList, BuilderError>
pub fn build(&self) -> Result<FollowCustomList, 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 FollowCustomListBuilder
impl Clone for FollowCustomListBuilder
Source§fn clone(&self) -> FollowCustomListBuilder
fn clone(&self) -> FollowCustomListBuilder
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 FollowCustomListBuilder
impl !RefUnwindSafe for FollowCustomListBuilder
impl !Send for FollowCustomListBuilder
impl !Sync for FollowCustomListBuilder
impl Unpin for FollowCustomListBuilder
impl !UnwindSafe for FollowCustomListBuilder
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