pub struct CheckFailure {
pub block_id: Option<u32>,
pub check_id: u32,
pub rule: String,
}Expand description
Details about a failed check from biscuit verification
Fields§
§block_id: Option<u32>Block ID (None if from authorizer)
check_id: u32Check ID
rule: StringThe Datalog rule that failed
Trait Implementations§
Source§impl Clone for CheckFailure
impl Clone for CheckFailure
Source§fn clone(&self) -> CheckFailure
fn clone(&self) -> CheckFailure
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 CheckFailure
impl Debug for CheckFailure
Auto Trait Implementations§
impl Freeze for CheckFailure
impl RefUnwindSafe for CheckFailure
impl Send for CheckFailure
impl Sync for CheckFailure
impl Unpin for CheckFailure
impl UnwindSafe for CheckFailure
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