pub struct CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with call().
Implementations§
Source§impl<'f1, 'f2, 'f3, 'f4, S: State> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, S>
impl<'f1, 'f2, 'f3, 'f4, S: State> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, S>
Sourcepub async fn call(self) -> Result<GetCommentsResponse, Error<CommentsGetError>>where
S: IsComplete,
pub async fn call(self) -> Result<GetCommentsResponse, Error<CommentsGetError>>where
S: IsComplete,
Finishes building and performs the requested action.
Sourcepub fn configuration(
self,
value: &'f1 Configuration,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetConfiguration<S>>where
S::Configuration: IsUnset,
pub fn configuration(
self,
value: &'f1 Configuration,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetConfiguration<S>>where
S::Configuration: IsUnset,
Required.
Sourcepub fn page(
self,
value: i32,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetPage<S>>where
S::Page: IsUnset,
pub fn page(
self,
value: i32,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetPage<S>>where
S::Page: IsUnset,
Sourcepub fn maybe_page(
self,
value: Option<i32>,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetPage<S>>where
S::Page: IsUnset,
pub fn maybe_page(
self,
value: Option<i32>,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetPage<S>>where
S::Page: IsUnset,
Sourcepub fn limit(
self,
value: i32,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetLimit<S>>where
S::Limit: IsUnset,
pub fn limit(
self,
value: i32,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetLimit<S>>where
S::Limit: IsUnset,
Sourcepub fn maybe_limit(
self,
value: Option<i32>,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetLimit<S>>where
S::Limit: IsUnset,
pub fn maybe_limit(
self,
value: Option<i32>,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetLimit<S>>where
S::Limit: IsUnset,
Sourcepub fn object_type(
self,
value: &'f2 str,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetObjectType<S>>where
S::ObjectType: IsUnset,
pub fn object_type(
self,
value: &'f2 str,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetObjectType<S>>where
S::ObjectType: IsUnset,
Sourcepub fn maybe_object_type(
self,
value: Option<&'f2 str>,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetObjectType<S>>where
S::ObjectType: IsUnset,
pub fn maybe_object_type(
self,
value: Option<&'f2 str>,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetObjectType<S>>where
S::ObjectType: IsUnset,
Sourcepub fn object_id(
self,
value: &'f3 str,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetObjectId<S>>where
S::ObjectId: IsUnset,
pub fn object_id(
self,
value: &'f3 str,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetObjectId<S>>where
S::ObjectId: IsUnset,
Sourcepub fn maybe_object_id(
self,
value: Option<&'f3 str>,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetObjectId<S>>where
S::ObjectId: IsUnset,
pub fn maybe_object_id(
self,
value: Option<&'f3 str>,
) -> CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, SetObjectId<S>>where
S::ObjectId: IsUnset,
Auto Trait Implementations§
impl<'f1, 'f2, 'f3, 'f4, S> Freeze for CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, S>
impl<'f1, 'f2, 'f3, 'f4, S = Empty> !RefUnwindSafe for CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, S>
impl<'f1, 'f2, 'f3, 'f4, S> Send for CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, S>
impl<'f1, 'f2, 'f3, 'f4, S> Sync for CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, S>
impl<'f1, 'f2, 'f3, 'f4, S> Unpin for CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, S>
impl<'f1, 'f2, 'f3, 'f4, S = Empty> !UnwindSafe for CommentsGetBuilder<'f1, 'f2, 'f3, 'f4, 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