pub struct ScopeValidation {
pub allowed: bool,
pub required_scopes: Vec<String>,
pub provided_scopes: Vec<String>,
pub missing_scopes: Vec<String>,
pub extra_scopes: Vec<String>,
pub reason: String,
pub diagnostics: Vec<String>,
}Fields§
§allowed: bool§required_scopes: Vec<String>§provided_scopes: Vec<String>§missing_scopes: Vec<String>§extra_scopes: Vec<String>§reason: String§diagnostics: Vec<String>Trait Implementations§
Source§impl Clone for ScopeValidation
impl Clone for ScopeValidation
Source§fn clone(&self) -> ScopeValidation
fn clone(&self) -> ScopeValidation
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 Debug for ScopeValidation
impl Debug for ScopeValidation
impl Eq for ScopeValidation
Source§impl PartialEq for ScopeValidation
impl PartialEq for ScopeValidation
impl StructuralPartialEq for ScopeValidation
Auto Trait Implementations§
impl Freeze for ScopeValidation
impl RefUnwindSafe for ScopeValidation
impl Send for ScopeValidation
impl Sync for ScopeValidation
impl Unpin for ScopeValidation
impl UnsafeUnpin for ScopeValidation
impl UnwindSafe for ScopeValidation
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