pub struct TrashPostingsRequestContent {
pub posting_ids: Vec<i64>,
pub remove_access: Option<String>,
}Fields§
§posting_ids: Vec<i64>§remove_access: Option<String>Omitted, JSON requests default to removing only your own access from shared topics. “false” trashes them for everyone instead.
Trait Implementations§
Source§impl Clone for TrashPostingsRequestContent
impl Clone for TrashPostingsRequestContent
Source§fn clone(&self) -> TrashPostingsRequestContent
fn clone(&self) -> TrashPostingsRequestContent
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 TrashPostingsRequestContent
impl Debug for TrashPostingsRequestContent
Source§impl Default for TrashPostingsRequestContent
impl Default for TrashPostingsRequestContent
Source§fn default() -> TrashPostingsRequestContent
fn default() -> TrashPostingsRequestContent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for TrashPostingsRequestContent
impl<'de> Deserialize<'de> for TrashPostingsRequestContent
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
impl StructuralPartialEq for TrashPostingsRequestContent
Auto Trait Implementations§
impl Freeze for TrashPostingsRequestContent
impl RefUnwindSafe for TrashPostingsRequestContent
impl Send for TrashPostingsRequestContent
impl Sync for TrashPostingsRequestContent
impl Unpin for TrashPostingsRequestContent
impl UnsafeUnpin for TrashPostingsRequestContent
impl UnwindSafe for TrashPostingsRequestContent
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