Struct rtlola_parser::ast::Input
source · [−]pub struct Input {
pub name: Ident,
pub ty: Type,
pub params: Vec<Rc<Parameter>>,
pub id: NodeId,
pub span: Span,
}
Expand description
An Ast node representing the declaration of an input stream.
Fields
name: Ident
The name of the input stream
ty: Type
The value type of the input stream
params: Vec<Rc<Parameter>>
The parameters of a parameterized input stream; The vector is empty in non-parametrized streams.
id: NodeId
The id of the node in the Ast
span: Span
The span in the specification declaring the input stream
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for Input
impl !Send for Input
impl !Sync for Input
impl Unpin for Input
impl UnwindSafe for Input
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