Struct rtlola_parser::ast::Parameter
source · [−]pub struct Parameter {
pub name: Ident,
pub ty: Option<Type>,
pub param_idx: usize,
pub id: NodeId,
pub span: Span,
}
Expand description
An Ast node representing the declaration of a parameter of a parametrized stream.
Fields
name: Ident
The name of the parameter
ty: Option<Type>
An optional value type annotation of the parameter
param_idx: usize
The index of this parameter in the list of parameter of the respective output stream
id: NodeId
The id of the node in the Ast
span: Span
The span in the specification declaring the parameter
Trait Implementations
impl Eq for Parameter
impl StructuralEq for Parameter
impl StructuralPartialEq for Parameter
Auto Trait Implementations
impl RefUnwindSafe for Parameter
impl Send for Parameter
impl Sync for Parameter
impl Unpin for Parameter
impl UnwindSafe for Parameter
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcefn clone_into(&self, target: &mut T)
fn clone_into(&self, target: &mut T)
🔬 This is a nightly-only experimental API. (
toowned_clone_into
)Uses borrowed data to replace owned data, usually by cloning. Read more