pub enum GMLValue {
GMLString(String),
GMLInt(i64),
GMLObject(Box<GMLObject>),
}
Variants§
Trait Implementations§
impl Eq for GMLValue
impl StructuralPartialEq for GMLValue
Auto Trait Implementations§
impl Freeze for GMLValue
impl RefUnwindSafe for GMLValue
impl Send for GMLValue
impl Sync for GMLValue
impl Unpin for GMLValue
impl UnwindSafe for GMLValue
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