pub struct OpenGraphDataArgs<'a> {
pub title: Option<WIPOffset<&'a str>>,
pub description: Option<WIPOffset<&'a str>>,
pub image: Option<WIPOffset<&'a str>>,
pub image_alt: Option<WIPOffset<&'a str>>,
pub image_width: i32,
pub image_height: i32,
pub og_type: OGType,
pub url: Option<WIPOffset<&'a str>>,
pub site_name: Option<WIPOffset<&'a str>>,
pub locale: Option<WIPOffset<&'a str>>,
}Fields§
§title: Option<WIPOffset<&'a str>>§description: Option<WIPOffset<&'a str>>§image: Option<WIPOffset<&'a str>>§image_alt: Option<WIPOffset<&'a str>>§image_width: i32§image_height: i32§og_type: OGType§url: Option<WIPOffset<&'a str>>§site_name: Option<WIPOffset<&'a str>>§locale: Option<WIPOffset<&'a str>>Trait Implementations§
Auto Trait Implementations§
impl<'a> Freeze for OpenGraphDataArgs<'a>
impl<'a> RefUnwindSafe for OpenGraphDataArgs<'a>
impl<'a> Send for OpenGraphDataArgs<'a>
impl<'a> Sync for OpenGraphDataArgs<'a>
impl<'a> Unpin for OpenGraphDataArgs<'a>
impl<'a> UnsafeUnpin for OpenGraphDataArgs<'a>
impl<'a> UnwindSafe for OpenGraphDataArgs<'a>
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