pub struct DebugTokenEndpoint {
pub input_token: Box<str>,
pub access_token: Box<str>,
pub version: Option<Box<str>>,
}
Fields§
§input_token: Box<str>
§access_token: Box<str>
§version: Option<Box<str>>
Implementations§
Trait Implementations§
Source§impl Clone for DebugTokenEndpoint
impl Clone for DebugTokenEndpoint
Source§fn clone(&self) -> DebugTokenEndpoint
fn clone(&self) -> DebugTokenEndpoint
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for DebugTokenEndpoint
impl Debug for DebugTokenEndpoint
Source§impl Endpoint for DebugTokenEndpoint
impl Endpoint for DebugTokenEndpoint
type RenderRequestError = EndpointError
type ParseResponseOutput = EndpointRet<DebugTokenResponseBodyOkJson>
type ParseResponseError = EndpointError
fn render_request(&self) -> Result<Request<Body>, Self::RenderRequestError>
fn parse_response( &self, response: Response<Body>, ) -> Result<Self::ParseResponseOutput, Self::ParseResponseError>
Auto Trait Implementations§
impl Freeze for DebugTokenEndpoint
impl RefUnwindSafe for DebugTokenEndpoint
impl Send for DebugTokenEndpoint
impl Sync for DebugTokenEndpoint
impl Unpin for DebugTokenEndpoint
impl UnwindSafe for DebugTokenEndpoint
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