#[non_exhaustive]pub struct MoveSectionItemRequest {
pub name: String,
pub target_section: String,
/* private fields */
}Expand description
Request message for moving a section item across sections.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.name: StringRequired. The resource name of the section item to move.
Format: users/{user}/sections/{section}/items/{item}
target_section: StringRequired. The resource name of the section to move the section item to.
Format: users/{user}/sections/{section}
Implementations§
Source§impl MoveSectionItemRequest
impl MoveSectionItemRequest
Trait Implementations§
Source§impl Clone for MoveSectionItemRequest
impl Clone for MoveSectionItemRequest
Source§fn clone(&self) -> MoveSectionItemRequest
fn clone(&self) -> MoveSectionItemRequest
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 MoveSectionItemRequest
impl Debug for MoveSectionItemRequest
Source§impl Default for MoveSectionItemRequest
impl Default for MoveSectionItemRequest
Source§fn default() -> MoveSectionItemRequest
fn default() -> MoveSectionItemRequest
Returns the “default value” for a type. Read more
Source§impl Message for MoveSectionItemRequest
impl Message for MoveSectionItemRequest
Source§impl PartialEq for MoveSectionItemRequest
impl PartialEq for MoveSectionItemRequest
impl StructuralPartialEq for MoveSectionItemRequest
Auto Trait Implementations§
impl Freeze for MoveSectionItemRequest
impl RefUnwindSafe for MoveSectionItemRequest
impl Send for MoveSectionItemRequest
impl Sync for MoveSectionItemRequest
impl Unpin for MoveSectionItemRequest
impl UnsafeUnpin for MoveSectionItemRequest
impl UnwindSafe for MoveSectionItemRequest
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