pub enum SurfaceField {
Symbol(Symbol),
Str(String),
Symbols(Vec<Symbol>),
Strs(Vec<String>),
Bool(bool),
U64(u64),
Expr(Expr),
}Expand description
A typed card field value.
Variants§
Symbol(Symbol)
A symbol value.
Str(String)
A string value.
Symbols(Vec<Symbol>)
A list-of-symbols value (built as a list of symbol values).
Strs(Vec<String>)
A list-of-strings value (built as a list of string values).
Bool(bool)
A boolean value.
U64(u64)
An unsigned-integer (i64-domain number) value.
Expr(Expr)
An arbitrary expression value.
Auto Trait Implementations§
impl Freeze for SurfaceField
impl RefUnwindSafe for SurfaceField
impl Send for SurfaceField
impl Sync for SurfaceField
impl Unpin for SurfaceField
impl UnsafeUnpin for SurfaceField
impl UnwindSafe for SurfaceField
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