pub struct ConstructorParameterNode<'a> {
pub visibilities: Vec<Visibility>,
pub modifier: Option<Modifier>,
pub parameter: Box<'a, Node<'a>>,
}Fields§
§visibilities: Vec<Visibility>§modifier: Option<Modifier>§parameter: Box<'a, Node<'a>>Implementations§
Source§impl<'a> ConstructorParameterNode<'a>
impl<'a> ConstructorParameterNode<'a>
Trait Implementations§
Source§impl<'arena> CloneIn<'arena> for ConstructorParameterNode<'_>
impl<'arena> CloneIn<'arena> for ConstructorParameterNode<'_>
Source§impl<'a> Debug for ConstructorParameterNode<'a>
impl<'a> Debug for ConstructorParameterNode<'a>
Source§impl<'a> PartialEq for ConstructorParameterNode<'a>
impl<'a> PartialEq for ConstructorParameterNode<'a>
Source§fn eq(&self, other: &ConstructorParameterNode<'a>) -> bool
fn eq(&self, other: &ConstructorParameterNode<'a>) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl<'a> Serialize for ConstructorParameterNode<'a>
impl<'a> Serialize for ConstructorParameterNode<'a>
impl<'a> StructuralPartialEq for ConstructorParameterNode<'a>
Auto Trait Implementations§
impl<'a> Freeze for ConstructorParameterNode<'a>
impl<'a> !RefUnwindSafe for ConstructorParameterNode<'a>
impl<'a> !Send for ConstructorParameterNode<'a>
impl<'a> !Sync for ConstructorParameterNode<'a>
impl<'a> Unpin for ConstructorParameterNode<'a>
impl<'a> !UnwindSafe for ConstructorParameterNode<'a>
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