pub struct Label {
pub id: u32,
pub name: String,
pub contactinfo: Option<String>,
pub profile: Option<String>,
pub parent_label: Option<LabelInfo>,
pub sublabels: Vec<LabelInfo>,
pub urls: Vec<String>,
pub data_quality: String,
pub images: Vec<Image>,
}Fields§
§id: u32§name: String§contactinfo: Option<String>§profile: Option<String>§parent_label: Option<LabelInfo>§sublabels: Vec<LabelInfo>§urls: Vec<String>§data_quality: String§images: Vec<Image>Implementations§
Trait Implementations§
impl Eq for Label
impl StructuralPartialEq for Label
Auto Trait Implementations§
impl Freeze for Label
impl RefUnwindSafe for Label
impl Send for Label
impl Sync for Label
impl Unpin for Label
impl UnwindSafe for Label
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