pub struct MicroformatEmbed {
pub height: Option<i32>,
pub iframe_url: Option<String>,
pub width: Option<i32>,
}
Expand description
Represents embed information in microformat data
Fields§
§height: Option<i32>
Height of the embed
iframe_url: Option<String>
URL for the iframe embed
width: Option<i32>
Width of the embed
Trait Implementations§
Source§impl Clone for MicroformatEmbed
impl Clone for MicroformatEmbed
Source§fn clone(&self) -> MicroformatEmbed
fn clone(&self) -> MicroformatEmbed
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for MicroformatEmbed
impl Debug for MicroformatEmbed
Source§impl<'de> Deserialize<'de> for MicroformatEmbed
impl<'de> Deserialize<'de> for MicroformatEmbed
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 MicroformatEmbed
impl RefUnwindSafe for MicroformatEmbed
impl Send for MicroformatEmbed
impl Sync for MicroformatEmbed
impl Unpin for MicroformatEmbed
impl UnwindSafe for MicroformatEmbed
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