pub struct FeedPostLink {
pub text: Option<String>,
pub title: Option<String>,
pub description: Option<String>,
pub url: Option<String>,
}Fields§
§text: Option<String>§title: Option<String>§description: Option<String>§url: Option<String>Implementations§
Source§impl FeedPostLink
impl FeedPostLink
pub fn new() -> FeedPostLink
Trait Implementations§
Source§impl Clone for FeedPostLink
impl Clone for FeedPostLink
Source§fn clone(&self) -> FeedPostLink
fn clone(&self) -> FeedPostLink
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 FeedPostLink
impl Debug for FeedPostLink
Source§impl Default for FeedPostLink
impl Default for FeedPostLink
Source§fn default() -> FeedPostLink
fn default() -> FeedPostLink
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for FeedPostLink
impl<'de> Deserialize<'de> for FeedPostLink
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
Source§impl PartialEq for FeedPostLink
impl PartialEq for FeedPostLink
Source§impl Serialize for FeedPostLink
impl Serialize for FeedPostLink
impl StructuralPartialEq for FeedPostLink
Auto Trait Implementations§
impl Freeze for FeedPostLink
impl RefUnwindSafe for FeedPostLink
impl Send for FeedPostLink
impl Sync for FeedPostLink
impl Unpin for FeedPostLink
impl UnwindSafe for FeedPostLink
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