pub enum RubyRequire {
Require(String),
RequireRelative(String),
Autoload(String, String),
}Expand description
Ruby require statement
Variants§
Trait Implementations§
Source§impl Clone for RubyRequire
impl Clone for RubyRequire
Source§fn clone(&self) -> RubyRequire
fn clone(&self) -> RubyRequire
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 moreSource§impl Debug for RubyRequire
impl Debug for RubyRequire
Auto Trait Implementations§
impl Freeze for RubyRequire
impl RefUnwindSafe for RubyRequire
impl Send for RubyRequire
impl Sync for RubyRequire
impl Unpin for RubyRequire
impl UnsafeUnpin for RubyRequire
impl UnwindSafe for RubyRequire
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