pub struct ClaimSupportEvaluation {
pub can_satisfy_required: bool,
pub supported_optional: Vec<ClaimName>,
pub supported_preferred: Vec<ClaimName>,
pub unsupported_required: Vec<ClaimName>,
}Fields§
§can_satisfy_required: bool§supported_optional: Vec<ClaimName>§supported_preferred: Vec<ClaimName>§unsupported_required: Vec<ClaimName>Trait Implementations§
Source§impl Clone for ClaimSupportEvaluation
impl Clone for ClaimSupportEvaluation
Source§fn clone(&self) -> ClaimSupportEvaluation
fn clone(&self) -> ClaimSupportEvaluation
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 ClaimSupportEvaluation
impl Debug for ClaimSupportEvaluation
Source§impl Default for ClaimSupportEvaluation
impl Default for ClaimSupportEvaluation
Source§fn default() -> ClaimSupportEvaluation
fn default() -> ClaimSupportEvaluation
Returns the “default value” for a type. Read more
impl Eq for ClaimSupportEvaluation
Source§impl PartialEq for ClaimSupportEvaluation
impl PartialEq for ClaimSupportEvaluation
impl StructuralPartialEq for ClaimSupportEvaluation
Auto Trait Implementations§
impl Freeze for ClaimSupportEvaluation
impl RefUnwindSafe for ClaimSupportEvaluation
impl Send for ClaimSupportEvaluation
impl Sync for ClaimSupportEvaluation
impl Unpin for ClaimSupportEvaluation
impl UnsafeUnpin for ClaimSupportEvaluation
impl UnwindSafe for ClaimSupportEvaluation
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