pub struct GetChatMemberCountParamsBuilder<S: State = Empty> { /* private fields */ }Expand description
Use builder syntax to set the inputs and finish with build().
Implementations§
Source§impl<S: State> GetChatMemberCountParamsBuilder<S>
impl<S: State> GetChatMemberCountParamsBuilder<S>
Sourcepub fn build(self) -> GetChatMemberCountParamswhere
S: IsComplete,
pub fn build(self) -> GetChatMemberCountParamswhere
S: IsComplete,
Finish building and return the requested object
Sourcepub fn chat_id(
self,
value: impl Into<ChatId>,
) -> GetChatMemberCountParamsBuilder<SetChatId<S>>where
S::ChatId: IsUnset,
pub fn chat_id(
self,
value: impl Into<ChatId>,
) -> GetChatMemberCountParamsBuilder<SetChatId<S>>where
S::ChatId: IsUnset,
Required.
Auto Trait Implementations§
impl<S> Freeze for GetChatMemberCountParamsBuilder<S>
impl<S> RefUnwindSafe for GetChatMemberCountParamsBuilder<S>
impl<S> Send for GetChatMemberCountParamsBuilder<S>
impl<S> Sync for GetChatMemberCountParamsBuilder<S>
impl<S> Unpin for GetChatMemberCountParamsBuilder<S>
impl<S> UnsafeUnpin for GetChatMemberCountParamsBuilder<S>
impl<S> UnwindSafe for GetChatMemberCountParamsBuilder<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