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