pub struct ParameterData {
pub modifiers: Option<NodeList>,
pub dot_dot_dot_token: bool,
pub name: NodeIndex,
pub question_token: bool,
pub type_annotation: NodeIndex,
pub initializer: NodeIndex,
}Expand description
Data for parameter declarations
Fields§
§modifiers: Option<NodeList>§dot_dot_dot_token: bool§name: NodeIndex§question_token: bool§type_annotation: NodeIndex§initializer: NodeIndexTrait Implementations§
Source§impl Clone for ParameterData
impl Clone for ParameterData
Source§fn clone(&self) -> ParameterData
fn clone(&self) -> ParameterData
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 ParameterData
impl Debug for ParameterData
Source§impl<'de> Deserialize<'de> for ParameterData
impl<'de> Deserialize<'de> for ParameterData
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for ParameterData
impl RefUnwindSafe for ParameterData
impl Send for ParameterData
impl Sync for ParameterData
impl Unpin for ParameterData
impl UnsafeUnpin for ParameterData
impl UnwindSafe for ParameterData
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