pub struct Series {
pub series_id: Uuid,
pub series_type: SeriesType,
pub series_name: String,
pub issn_print: String,
pub issn_digital: String,
pub series_url: Option<String>,
pub imprint_id: Uuid,
}
Fields§
§series_id: Uuid
§series_type: SeriesType
§series_name: String
§issn_print: String
§issn_digital: String
§series_url: Option<String>
§imprint_id: Uuid
Auto Trait Implementations§
impl Freeze for Series
impl RefUnwindSafe for Series
impl Send for Series
impl Sync for Series
impl Unpin for Series
impl UnwindSafe for Series
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