Enum biscuit_auth::builder::Term
source ·
[−]pub enum Term {
Variable(String),
Integer(i64),
Str(String),
Date(u64),
Bytes(Vec<u8>),
Bool(bool),
Set(BTreeSet<Term>),
}Expand description
Builder for a Datalog value
Variants
Variable(String)
Tuple Fields
0: StringInteger(i64)
Tuple Fields
0: i64Str(String)
Tuple Fields
0: StringDate(u64)
Tuple Fields
0: u64Bytes(Vec<u8>)
Bool(bool)
Tuple Fields
0: boolSet(BTreeSet<Term>)
Implementations
Trait Implementations
Performs the conversion.
This method returns an ordering between self and other values if one exists. Read more
This method tests less than (for self and other) and is used by the < operator. Read more
This method tests less than or equal to (for self and other) and is used by the <=
operator. Read more
This method tests greater than (for self and other) and is used by the > operator. Read more
Auto Trait Implementations
impl RefUnwindSafe for Term
impl UnwindSafe for Term
Blanket Implementations
Mutably borrows from an owned value. Read more
