pub struct Creator {
pub creator_type: String,
pub first_name: Option<String>,
pub last_name: String,
pub order: i32,
}Fields§
§creator_type: String§first_name: Option<String>§last_name: String§order: i32Trait Implementations§
Auto Trait Implementations§
impl Freeze for Creator
impl RefUnwindSafe for Creator
impl Send for Creator
impl Sync for Creator
impl Unpin for Creator
impl UnwindSafe for Creator
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