pub struct ProjectCreateRequest {
pub name: String,
}
Expand description
The project create request payload.
Fields§
§name: String
The friendly name of the project, this name appears in reports.
Trait Implementations§
Source§impl Clone for ProjectCreateRequest
impl Clone for ProjectCreateRequest
Source§fn clone(&self) -> ProjectCreateRequest
fn clone(&self) -> ProjectCreateRequest
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 ProjectCreateRequest
impl Debug for ProjectCreateRequest
Source§impl<'de> Deserialize<'de> for ProjectCreateRequest
impl<'de> Deserialize<'de> for ProjectCreateRequest
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 ProjectCreateRequest
impl PartialEq for ProjectCreateRequest
Source§impl Serialize for ProjectCreateRequest
impl Serialize for ProjectCreateRequest
impl StructuralPartialEq for ProjectCreateRequest
Auto Trait Implementations§
impl Freeze for ProjectCreateRequest
impl RefUnwindSafe for ProjectCreateRequest
impl Send for ProjectCreateRequest
impl Sync for ProjectCreateRequest
impl Unpin for ProjectCreateRequest
impl UnwindSafe for ProjectCreateRequest
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