pub struct CreateFolderForPostingsRequestContent {
pub posting_ids: Vec<i64>,
pub folder: FolderPayload,
}Expand description
Wire format: {posting_ids: […], folder: {name, status}}
Fields§
§posting_ids: Vec<i64>§folder: FolderPayloadTrait Implementations§
Source§impl Clone for CreateFolderForPostingsRequestContent
impl Clone for CreateFolderForPostingsRequestContent
Source§fn clone(&self) -> CreateFolderForPostingsRequestContent
fn clone(&self) -> CreateFolderForPostingsRequestContent
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 Default for CreateFolderForPostingsRequestContent
impl Default for CreateFolderForPostingsRequestContent
Source§fn default() -> CreateFolderForPostingsRequestContent
fn default() -> CreateFolderForPostingsRequestContent
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateFolderForPostingsRequestContent
impl<'de> Deserialize<'de> for CreateFolderForPostingsRequestContent
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 CreateFolderForPostingsRequestContent
Auto Trait Implementations§
impl Freeze for CreateFolderForPostingsRequestContent
impl RefUnwindSafe for CreateFolderForPostingsRequestContent
impl Send for CreateFolderForPostingsRequestContent
impl Sync for CreateFolderForPostingsRequestContent
impl Unpin for CreateFolderForPostingsRequestContent
impl UnsafeUnpin for CreateFolderForPostingsRequestContent
impl UnwindSafe for CreateFolderForPostingsRequestContent
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