pub struct RichImageValue {
pub context: String,
pub type_: LinkedDataType,
pub additional_type: Option<String>,
pub name: Option<String>,
pub url: Option<String>,
pub width: Option<f64>,
pub height: Option<f64>,
pub status: Option<ImageStatus>,
}Fields§
§context: String§type_: LinkedDataType§additional_type: Option<String>§name: Option<String>§url: Option<String>§width: Option<f64>§height: Option<f64>§status: Option<ImageStatus>Trait Implementations§
Source§impl Clone for RichImageValue
impl Clone for RichImageValue
Source§fn clone(&self) -> RichImageValue
fn clone(&self) -> RichImageValue
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for RichImageValue
impl Debug for RichImageValue
Source§impl<'de> Deserialize<'de> for RichImageValue
impl<'de> Deserialize<'de> for RichImageValue
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for RichImageValue
impl RefUnwindSafe for RichImageValue
impl Send for RichImageValue
impl Sync for RichImageValue
impl Unpin for RichImageValue
impl UnwindSafe for RichImageValue
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