pub struct StreamExpression {
    pub nodes: (Expression, Option<(Keyword, Bracket<ArrayRangeExpression>)>),
}Fields§
§nodes: (Expression, Option<(Keyword, Bracket<ArrayRangeExpression>)>)Trait Implementations§
Source§impl Clone for StreamExpression
 
impl Clone for StreamExpression
Source§fn clone(&self) -> StreamExpression
 
fn clone(&self) -> StreamExpression
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 StreamExpression
 
impl Debug for StreamExpression
Source§impl<'a> From<&'a StreamExpression> for RefNode<'a>
 
impl<'a> From<&'a StreamExpression> for RefNode<'a>
Source§fn from(x: &'a StreamExpression) -> RefNode<'a>
 
fn from(x: &'a StreamExpression) -> RefNode<'a>
Converts to this type from the input type.
Source§impl<'a> From<&'a StreamExpression> for RefNodes<'a>
 
impl<'a> From<&'a StreamExpression> for RefNodes<'a>
Source§fn from(x: &'a StreamExpression) -> RefNodes<'a>
 
fn from(x: &'a StreamExpression) -> RefNodes<'a>
Converts to this type from the input type.
Source§impl From<StreamExpression> for AnyNode
 
impl From<StreamExpression> for AnyNode
Source§fn from(x: StreamExpression) -> AnyNode
 
fn from(x: StreamExpression) -> AnyNode
Converts to this type from the input type.
Source§impl<'a> IntoIterator for &'a StreamExpression
 
impl<'a> IntoIterator for &'a StreamExpression
Source§impl PartialEq for StreamExpression
 
impl PartialEq for StreamExpression
Source§impl<'a> TryFrom<&'a StreamExpression> for Locate
 
impl<'a> TryFrom<&'a StreamExpression> for Locate
Source§impl TryFrom<AnyNode> for StreamExpression
 
impl TryFrom<AnyNode> for StreamExpression
Source§impl TryFrom<StreamExpression> for Locate
 
impl TryFrom<StreamExpression> for Locate
impl StructuralPartialEq for StreamExpression
Auto Trait Implementations§
impl Freeze for StreamExpression
impl RefUnwindSafe for StreamExpression
impl Send for StreamExpression
impl Sync for StreamExpression
impl Unpin for StreamExpression
impl UnwindSafe for StreamExpression
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