[−][src]Struct lib_ruby_parser::nodes::When
Represents a branch of the case
statement (i.e. when foo
)
Fields
patterns: Vec<Node>
A list of values to compare/match against
body: Option<Box<Node>>
Body of the when
branch
keyword_l: Range
Location of the when
keyword
case foo; when bar; end
~~~~
begin_l: Range
Location of the then
keyword
case foo; when bar then baz; end
~~~~
then
is optional, and so begin_l
can be None
expression_l: Range
Location of the full expression
case foo; when bar then baz; end
~~~~~~~~~~~~~~~~~
Trait Implementations
impl Clone for When
[src][+]
impl Debug for When
[src][+]
impl PartialEq<When> for When
[src][+]
impl StructuralPartialEq for When
[src]
Auto Trait Implementations
impl RefUnwindSafe for When
impl Send for When
impl Sync for When
impl Unpin for When
impl UnwindSafe for When
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>,