#[repr(C)]pub struct mrb_ast_node {
pub car: *mut mrb_ast_node,
pub cdr: *mut mrb_ast_node,
pub lineno: u16,
pub filename_index: u16,
}
Fields§
§car: *mut mrb_ast_node
§cdr: *mut mrb_ast_node
§lineno: u16
§filename_index: u16
Trait Implementations§
Source§impl Clone for mrb_ast_node
impl Clone for mrb_ast_node
Source§fn clone(&self) -> mrb_ast_node
fn clone(&self) -> mrb_ast_node
Returns a copy 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 mrb_ast_node
impl Debug for mrb_ast_node
impl Copy for mrb_ast_node
Auto Trait Implementations§
impl Freeze for mrb_ast_node
impl RefUnwindSafe for mrb_ast_node
impl !Send for mrb_ast_node
impl !Sync for mrb_ast_node
impl Unpin for mrb_ast_node
impl UnwindSafe for mrb_ast_node
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