pub struct ConstructorParam {
pub modifiers: Vec<Modifier>,
pub property_type: Option<PropertyType>,
pub param: Param,
}
Fields§
§modifiers: Vec<Modifier>
§property_type: Option<PropertyType>
§param: Param
Trait Implementations§
Source§impl Clone for ConstructorParam
impl Clone for ConstructorParam
Source§fn clone(&self) -> ConstructorParam
fn clone(&self) -> ConstructorParam
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 ConstructorParam
impl Debug for ConstructorParam
Source§impl PartialEq for ConstructorParam
impl PartialEq for ConstructorParam
impl StructuralPartialEq for ConstructorParam
Auto Trait Implementations§
impl Freeze for ConstructorParam
impl RefUnwindSafe for ConstructorParam
impl Send for ConstructorParam
impl Sync for ConstructorParam
impl Unpin for ConstructorParam
impl UnwindSafe for ConstructorParam
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