pub struct ParameterNode {
pub name: Node,
pub is_mutable: Option<Node>,
}
Fields§
§name: Node
§is_mutable: Option<Node>
Implementations§
Source§impl ParameterNode
impl ParameterNode
pub const fn is_mutable(&self) -> bool
Trait Implementations§
Source§impl Clone for ParameterNode
impl Clone for ParameterNode
Source§fn clone(&self) -> ParameterNode
fn clone(&self) -> ParameterNode
Returns a copy 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 ParameterNode
impl Debug for ParameterNode
Source§impl PartialEq for ParameterNode
impl PartialEq for ParameterNode
impl Eq for ParameterNode
impl StructuralPartialEq for ParameterNode
Auto Trait Implementations§
impl Freeze for ParameterNode
impl RefUnwindSafe for ParameterNode
impl Send for ParameterNode
impl Sync for ParameterNode
impl Unpin for ParameterNode
impl UnwindSafe for ParameterNode
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