pub enum DerivedDecl {
Pointer(TypeQualifiers),
Array(ArrayDecl),
Function(ParamList),
}Expand description
派生宣言子(ポインタ、配列、関数)
Variants§
Trait Implementations§
Source§impl Clone for DerivedDecl
impl Clone for DerivedDecl
Source§fn clone(&self) -> DerivedDecl
fn clone(&self) -> DerivedDecl
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for DerivedDecl
impl RefUnwindSafe for DerivedDecl
impl Send for DerivedDecl
impl Sync for DerivedDecl
impl Unpin for DerivedDecl
impl UnsafeUnpin for DerivedDecl
impl UnwindSafe for DerivedDecl
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