[−][src]Struct lib_ruby_parser::nodes::IfTernary
Represents ternary if
statement (i.e. cond ? if_true : if_false
)
Fields
cond: Box<Node>
Condition of the if
statement
if_true: Box<Node>
True-branch
if_false: Box<Node>
True-branch
question_l: Range
Location of the ?
operator
cond ? if_true : if_false
~
colon_l: Range
Location of the :
operator
cond ? if_true : if_false
~
expression_l: Range
Location of the full expression
cond ? if_true : if_false
~~~~~~~~~~~~~~~~~~~~~~~~~
Trait Implementations
impl Clone for IfTernary
[src][+]
impl Debug for IfTernary
[src][+]
impl PartialEq<IfTernary> for IfTernary
[src][+]
impl StructuralPartialEq for IfTernary
[src]
Auto Trait Implementations
impl !RefUnwindSafe for IfTernary
impl !Send for IfTernary
impl !Sync for IfTernary
impl Unpin for IfTernary
impl UnwindSafe for IfTernary
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized,
[src][+]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src][+]
T: ?Sized,
impl<T> From<T> for T
[src][+]
impl<T, U> Into<U> for T where
U: From<T>,
[src][+]
U: From<T>,
impl<T> ToOwned for T where
T: Clone,
[src][+]
T: Clone,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src][+]
U: Into<T>,
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src][+]
U: TryFrom<T>,