pub struct RemoveMembersRequest;Expand description
Endpoint marker for the chat.bsky.group.removeMembers procedure.
Path: /xrpc/chat.bsky.group.removeMembers. The request payload type is RemoveMembers<S>; send that request with jacquard::Client or use this marker through lower-level XrpcEndpoint APIs.
Trait Implementations§
Source§impl XrpcEndpoint for RemoveMembersRequest
impl XrpcEndpoint for RemoveMembersRequest
Source§const PATH: &'static str = "/xrpc/chat.bsky.group.removeMembers"
const PATH: &'static str = "/xrpc/chat.bsky.group.removeMembers"
Fully-qualified path (‘/xrpc/[nsid]’) where this endpoint should live on the server
Source§const METHOD: XrpcMethod
const METHOD: XrpcMethod
XRPC method (query/GET or procedure/POST)
Source§type Request<S: BosStr> = RemoveMembers<S>
type Request<S: BosStr> = RemoveMembers<S>
XRPC Request data type
Source§type Response = RemoveMembersResponse
type Response = RemoveMembersResponse
XRPC Response data type
Auto Trait Implementations§
impl Freeze for RemoveMembersRequest
impl RefUnwindSafe for RemoveMembersRequest
impl Send for RemoveMembersRequest
impl Sync for RemoveMembersRequest
impl Unpin for RemoveMembersRequest
impl UnsafeUnpin for RemoveMembersRequest
impl UnwindSafe for RemoveMembersRequest
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