pub struct CreateFeedPostParams {
pub tenant_id: String,
pub create_feed_post_params: CreateFeedPostParams,
pub broadcast_id: Option<String>,
pub is_live: Option<bool>,
pub do_spam_check: Option<bool>,
pub skip_dup_check: Option<bool>,
}Expand description
struct for passing parameters to the method create_feed_post
Fields§
§tenant_id: String§create_feed_post_params: CreateFeedPostParams§broadcast_id: Option<String>§is_live: Option<bool>§do_spam_check: Option<bool>§skip_dup_check: Option<bool>Trait Implementations§
Source§impl Clone for CreateFeedPostParams
impl Clone for CreateFeedPostParams
Source§fn clone(&self) -> CreateFeedPostParams
fn clone(&self) -> CreateFeedPostParams
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 moreAuto Trait Implementations§
impl Freeze for CreateFeedPostParams
impl RefUnwindSafe for CreateFeedPostParams
impl Send for CreateFeedPostParams
impl Sync for CreateFeedPostParams
impl Unpin for CreateFeedPostParams
impl UnwindSafe for CreateFeedPostParams
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