pub struct UpdateFeedPostParams {
pub title: Option<String>,
pub content_html: Option<String>,
pub media: Option<Vec<FeedPostMediaItem>>,
pub links: Option<Vec<FeedPostLink>>,
pub tags: Option<Vec<String>>,
pub meta: Option<HashMap<String, String>>,
}Fields§
§title: Option<String>§content_html: Option<String>§media: Option<Vec<FeedPostMediaItem>>§links: Option<Vec<FeedPostLink>>§meta: Option<HashMap<String, String>>Construct a type with a set of properties K of type T
Implementations§
Source§impl UpdateFeedPostParams
impl UpdateFeedPostParams
pub fn new() -> UpdateFeedPostParams
Trait Implementations§
Source§impl Clone for UpdateFeedPostParams
impl Clone for UpdateFeedPostParams
Source§fn clone(&self) -> UpdateFeedPostParams
fn clone(&self) -> UpdateFeedPostParams
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 UpdateFeedPostParams
impl Debug for UpdateFeedPostParams
Source§impl Default for UpdateFeedPostParams
impl Default for UpdateFeedPostParams
Source§fn default() -> UpdateFeedPostParams
fn default() -> UpdateFeedPostParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateFeedPostParams
impl<'de> Deserialize<'de> for UpdateFeedPostParams
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 UpdateFeedPostParams
impl PartialEq for UpdateFeedPostParams
Source§impl Serialize for UpdateFeedPostParams
impl Serialize for UpdateFeedPostParams
impl StructuralPartialEq for UpdateFeedPostParams
Auto Trait Implementations§
impl Freeze for UpdateFeedPostParams
impl RefUnwindSafe for UpdateFeedPostParams
impl Send for UpdateFeedPostParams
impl Sync for UpdateFeedPostParams
impl Unpin for UpdateFeedPostParams
impl UnwindSafe for UpdateFeedPostParams
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