pub struct AppArray {
pub name: String,
pub unique_id: String,
pub label: Option<String>,
pub description: Option<String>,
pub lower_limit: u32,
pub upper_limit: u32,
pub data_type: String,
}Expand description
Represents an <array> data type.
Fields§
§name: String§unique_id: String§label: Option<String>§description: Option<String>§lower_limit: u32§upper_limit: u32§data_type: StringThe data type of array elements.
Trait Implementations§
impl StructuralPartialEq for AppArray
Auto Trait Implementations§
impl Freeze for AppArray
impl RefUnwindSafe for AppArray
impl Send for AppArray
impl Sync for AppArray
impl Unpin for AppArray
impl UnwindSafe for AppArray
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