pub struct ProjectsMoveColumnRequest {
pub position: String,
}Fields§
§position: StringThe position of the column in a project. Can be one of: first, last, or after:<column_id> to place after the specified column.
Implementations§
Source§impl ProjectsMoveColumnRequest
impl ProjectsMoveColumnRequest
pub fn new(position: String) -> ProjectsMoveColumnRequest
Trait Implementations§
Source§impl Clone for ProjectsMoveColumnRequest
impl Clone for ProjectsMoveColumnRequest
Source§fn clone(&self) -> ProjectsMoveColumnRequest
fn clone(&self) -> ProjectsMoveColumnRequest
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 ProjectsMoveColumnRequest
impl Debug for ProjectsMoveColumnRequest
Source§impl Default for ProjectsMoveColumnRequest
impl Default for ProjectsMoveColumnRequest
Source§fn default() -> ProjectsMoveColumnRequest
fn default() -> ProjectsMoveColumnRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectsMoveColumnRequest
impl<'de> Deserialize<'de> for ProjectsMoveColumnRequest
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
Source§impl PartialEq for ProjectsMoveColumnRequest
impl PartialEq for ProjectsMoveColumnRequest
Source§fn eq(&self, other: &ProjectsMoveColumnRequest) -> bool
fn eq(&self, other: &ProjectsMoveColumnRequest) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for ProjectsMoveColumnRequest
Auto Trait Implementations§
impl Freeze for ProjectsMoveColumnRequest
impl RefUnwindSafe for ProjectsMoveColumnRequest
impl Send for ProjectsMoveColumnRequest
impl Sync for ProjectsMoveColumnRequest
impl Unpin for ProjectsMoveColumnRequest
impl UnsafeUnpin for ProjectsMoveColumnRequest
impl UnwindSafe for ProjectsMoveColumnRequest
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