pub struct Profile {
pub name: PrefixedOptional<String>,
pub uuid: PrefixedOptional<UUID>,
pub property: PrefixedArray<ProfileProperty>,
}Fields§
§name: PrefixedOptional<String>§uuid: PrefixedOptional<UUID>§property: PrefixedArray<ProfileProperty>Implementations§
Source§impl Profile
impl Profile
pub fn new( name: PrefixedOptional<String>, uuid: PrefixedOptional<UUID>, property: PrefixedArray<ProfileProperty>, ) -> Self
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Profile
impl RefUnwindSafe for Profile
impl Send for Profile
impl Sync for Profile
impl Unpin for Profile
impl UnwindSafe for Profile
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