pub struct ArrayDeclarator {
pub ident: String,
pub len: Vec<PositiveIntConst>,
}Fields§
§ident: String§len: Vec<PositiveIntConst>Trait Implementations§
Source§impl Clone for ArrayDeclarator
impl Clone for ArrayDeclarator
Source§fn clone(&self) -> ArrayDeclarator
fn clone(&self) -> ArrayDeclarator
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 ArrayDeclarator
impl Debug for ArrayDeclarator
Source§impl<'de> Deserialize<'de> for ArrayDeclarator
impl<'de> Deserialize<'de> for ArrayDeclarator
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
Source§impl From<ArrayDeclarator> for ArrayDeclarator
impl From<ArrayDeclarator> for ArrayDeclarator
Source§fn from(value: ArrayDeclarator) -> Self
fn from(value: ArrayDeclarator) -> Self
Converts to this type from the input type.
Auto Trait Implementations§
impl Freeze for ArrayDeclarator
impl RefUnwindSafe for ArrayDeclarator
impl Send for ArrayDeclarator
impl Sync for ArrayDeclarator
impl Unpin for ArrayDeclarator
impl UnsafeUnpin for ArrayDeclarator
impl UnwindSafe for ArrayDeclarator
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