pub struct AppStruct {
pub name: String,
pub unique_id: String,
pub label: Option<String>,
pub description: Option<String>,
pub members: Vec<StructMember>,
}Expand description
Represents a <struct> data type.
Fields§
§name: String§unique_id: String§label: Option<String>§description: Option<String>§members: Vec<StructMember>Trait Implementations§
impl StructuralPartialEq for AppStruct
Auto Trait Implementations§
impl Freeze for AppStruct
impl RefUnwindSafe for AppStruct
impl Send for AppStruct
impl Sync for AppStruct
impl Unpin for AppStruct
impl UnwindSafe for AppStruct
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