pub enum FactTerm {
String(String),
Integer(i64),
Bytes(Vec<u8>),
}Expand description
A term in a fact (string, number, or bytes)
Variants§
String(String)
String value
Integer(i64)
Integer value
Bytes(Vec<u8>)
Bytes value (stored as hex string for Biscuit compatibility)
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FactTerm
impl RefUnwindSafe for FactTerm
impl Send for FactTerm
impl Sync for FactTerm
impl Unpin for FactTerm
impl UnsafeUnpin for FactTerm
impl UnwindSafe for FactTerm
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