pub struct Pac {
pub name: String,
pub elements: Vec<String>,
}Expand description
Represents a Pac instance with a name and a list of elements.
Fields§
§name: StringThe name of the Pac instance.
elements: Vec<String>A vector of strings representing the elements of the Pac instance.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Pac
impl RefUnwindSafe for Pac
impl Send for Pac
impl Sync for Pac
impl Unpin for Pac
impl UnwindSafe for Pac
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