pub struct IsFollowingCustomListBuilder {
list_id: Option<Uuid>,
/* private fields */
}
Expand description
Builder for IsFollowingCustomList
.
Fields§
§list_id: Option<Uuid>
Implementations§
Source§impl IsFollowingCustomListBuilder
impl IsFollowingCustomListBuilder
pub fn list_id<VALUE: Into<Uuid>>(&mut self, value: VALUE) -> &mut Self
Sourcepub fn build(&self) -> Result<IsFollowingCustomList, BuilderError>
pub fn build(&self) -> Result<IsFollowingCustomList, BuilderError>
Sourcefn create_empty() -> Self
fn create_empty() -> Self
Create an empty builder, with all fields set to None
or PhantomData
.
Source§impl IsFollowingCustomListBuilder
impl IsFollowingCustomListBuilder
pub async fn send(&self) -> Result<IsFollowingResponse>
Trait Implementations§
Source§impl Clone for IsFollowingCustomListBuilder
impl Clone for IsFollowingCustomListBuilder
Source§fn clone(&self) -> IsFollowingCustomListBuilder
fn clone(&self) -> IsFollowingCustomListBuilder
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 IsFollowingCustomListBuilder
impl !RefUnwindSafe for IsFollowingCustomListBuilder
impl !Send for IsFollowingCustomListBuilder
impl !Sync for IsFollowingCustomListBuilder
impl Unpin for IsFollowingCustomListBuilder
impl !UnwindSafe for IsFollowingCustomListBuilder
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