pub struct DatVerifyResponse {
pub valid: bool,
pub issuer: Option<String>,
pub subject: Option<String>,
pub scopes: Option<Vec<String>>,
pub jti: Option<String>,
pub error: Option<String>,
}Expand description
Response from DAT verification.
Fields§
§valid: bool§issuer: Option<String>§subject: Option<String>§scopes: Option<Vec<String>>§jti: Option<String>§error: Option<String>Trait Implementations§
Source§impl Debug for DatVerifyResponse
impl Debug for DatVerifyResponse
Auto Trait Implementations§
impl Freeze for DatVerifyResponse
impl RefUnwindSafe for DatVerifyResponse
impl Send for DatVerifyResponse
impl Sync for DatVerifyResponse
impl Unpin for DatVerifyResponse
impl UnsafeUnpin for DatVerifyResponse
impl UnwindSafe for DatVerifyResponse
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