pub enum BootstrapArgument {
Integer(i32),
Float(f32),
Long(i64),
Double(f64),
String(String),
Class(String),
MethodType(String),
Handle(Handle),
}Variants§
Integer(i32)
Float(f32)
Long(i64)
Double(f64)
String(String)
Class(String)
MethodType(String)
Handle(Handle)
Trait Implementations§
Source§impl Clone for BootstrapArgument
impl Clone for BootstrapArgument
Source§fn clone(&self) -> BootstrapArgument
fn clone(&self) -> BootstrapArgument
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 moreAuto Trait Implementations§
impl Freeze for BootstrapArgument
impl RefUnwindSafe for BootstrapArgument
impl Send for BootstrapArgument
impl Sync for BootstrapArgument
impl Unpin for BootstrapArgument
impl UnsafeUnpin for BootstrapArgument
impl UnwindSafe for BootstrapArgument
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