pub enum ProjectTokenIntrospectionResponse {
Active(ActiveProjectToken),
Inactive(InactiveProjectToken),
}Expand description
Non-enumerating introspection union. Invalid or inactive authority is always the inactive arm.
Variants§
Active(ActiveProjectToken)
Inactive(InactiveProjectToken)
Trait Implementations§
Source§impl Clone for ProjectTokenIntrospectionResponse
impl Clone for ProjectTokenIntrospectionResponse
Source§fn clone(&self) -> ProjectTokenIntrospectionResponse
fn clone(&self) -> ProjectTokenIntrospectionResponse
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl ComposeSchema for ProjectTokenIntrospectionResponse
impl ComposeSchema for ProjectTokenIntrospectionResponse
Source§impl<'de> Deserialize<'de> for ProjectTokenIntrospectionResponse
impl<'de> Deserialize<'de> for ProjectTokenIntrospectionResponse
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
impl StructuralPartialEq for ProjectTokenIntrospectionResponse
Auto Trait Implementations§
impl Freeze for ProjectTokenIntrospectionResponse
impl RefUnwindSafe for ProjectTokenIntrospectionResponse
impl Send for ProjectTokenIntrospectionResponse
impl Sync for ProjectTokenIntrospectionResponse
impl Unpin for ProjectTokenIntrospectionResponse
impl UnsafeUnpin for ProjectTokenIntrospectionResponse
impl UnwindSafe for ProjectTokenIntrospectionResponse
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