pub struct GithubCallbackRequest;Expand description
Endpoint type for app.ocho.auth.githubCallback
Trait Implementations§
Source§impl XrpcEndpoint for GithubCallbackRequest
impl XrpcEndpoint for GithubCallbackRequest
Source§const PATH: &'static str = "/xrpc/app.ocho.auth.githubCallback"
const PATH: &'static str = "/xrpc/app.ocho.auth.githubCallback"
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<'de> = GithubCallback<'de>
type Request<'de> = GithubCallback<'de>
XRPC Request data type
Source§type Response = GithubCallbackResponse
type Response = GithubCallbackResponse
XRPC Response data type
Auto Trait Implementations§
impl Freeze for GithubCallbackRequest
impl RefUnwindSafe for GithubCallbackRequest
impl Send for GithubCallbackRequest
impl Sync for GithubCallbackRequest
impl Unpin for GithubCallbackRequest
impl UnwindSafe for GithubCallbackRequest
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