pub struct ArrayCreation {
pub element_type: String,
pub dimensions: Vec<Expression>,
}Expand description
Array creation.
Fields§
§element_type: StringElement type.
dimensions: Vec<Expression>Array dimensions.
Trait Implementations§
Source§impl Clone for ArrayCreation
impl Clone for ArrayCreation
Source§fn clone(&self) -> ArrayCreation
fn clone(&self) -> ArrayCreation
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 ArrayCreation
impl Debug for ArrayCreation
Source§impl<'de> Deserialize<'de> for ArrayCreation
impl<'de> Deserialize<'de> for ArrayCreation
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 PartialEq for ArrayCreation
impl PartialEq for ArrayCreation
Source§impl Serialize for ArrayCreation
impl Serialize for ArrayCreation
impl StructuralPartialEq for ArrayCreation
Auto Trait Implementations§
impl Freeze for ArrayCreation
impl RefUnwindSafe for ArrayCreation
impl Send for ArrayCreation
impl Sync for ArrayCreation
impl Unpin for ArrayCreation
impl UnsafeUnpin for ArrayCreation
impl UnwindSafe for ArrayCreation
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