pub struct ProjectCopy {
pub from_name: String,
pub to_name: String,
}Expand description
POST body — copy. Official body keys are fromName/toName.
Fields§
§from_name: StringSource project name.
to_name: StringDestination name (must not already exist).
Trait Implementations§
Source§impl Clone for ProjectCopy
impl Clone for ProjectCopy
Source§fn clone(&self) -> ProjectCopy
fn clone(&self) -> ProjectCopy
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 ProjectCopy
impl Debug for ProjectCopy
Source§impl<'de> Deserialize<'de> for ProjectCopy
impl<'de> Deserialize<'de> for ProjectCopy
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 Eq for ProjectCopy
Source§impl PartialEq for ProjectCopy
impl PartialEq for ProjectCopy
Source§impl Serialize for ProjectCopy
impl Serialize for ProjectCopy
impl StructuralPartialEq for ProjectCopy
Auto Trait Implementations§
impl Freeze for ProjectCopy
impl RefUnwindSafe for ProjectCopy
impl Send for ProjectCopy
impl Sync for ProjectCopy
impl Unpin for ProjectCopy
impl UnsafeUnpin for ProjectCopy
impl UnwindSafe for ProjectCopy
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> DeserializeOwned for Twhere
T: for<'de> Deserialize<'de>,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.