pub struct ProjectSectionInsertRequest {
pub after_section: String,
pub before_section: String,
pub section: String,
}
Fields§
§after_section: String
Insert the given section immediately after the section specified by this parameter.
before_section: String
Insert the given section immediately before the section specified by this parameter.
section: String
The section to reorder.
Trait Implementations§
Source§impl Clone for ProjectSectionInsertRequest
impl Clone for ProjectSectionInsertRequest
Source§fn clone(&self) -> ProjectSectionInsertRequest
fn clone(&self) -> ProjectSectionInsertRequest
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 ProjectSectionInsertRequest
impl Debug for ProjectSectionInsertRequest
Source§impl Default for ProjectSectionInsertRequest
impl Default for ProjectSectionInsertRequest
Source§fn default() -> ProjectSectionInsertRequest
fn default() -> ProjectSectionInsertRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectSectionInsertRequest
impl<'de> Deserialize<'de> for ProjectSectionInsertRequest
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
Auto Trait Implementations§
impl Freeze for ProjectSectionInsertRequest
impl RefUnwindSafe for ProjectSectionInsertRequest
impl Send for ProjectSectionInsertRequest
impl Sync for ProjectSectionInsertRequest
impl Unpin for ProjectSectionInsertRequest
impl UnwindSafe for ProjectSectionInsertRequest
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