pub struct ProjectIdentifierBean {
pub id: Option<i64>,
pub key: Option<String>,
}
Expand description
ProjectIdentifierBean : The identifiers for a project.
Fields§
§id: Option<i64>
The ID of the project.
key: Option<String>
The key of the project.
Implementations§
Source§impl ProjectIdentifierBean
impl ProjectIdentifierBean
Sourcepub fn new() -> ProjectIdentifierBean
pub fn new() -> ProjectIdentifierBean
The identifiers for a project.
Trait Implementations§
Source§impl Clone for ProjectIdentifierBean
impl Clone for ProjectIdentifierBean
Source§fn clone(&self) -> ProjectIdentifierBean
fn clone(&self) -> ProjectIdentifierBean
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 ProjectIdentifierBean
impl Debug for ProjectIdentifierBean
Source§impl Default for ProjectIdentifierBean
impl Default for ProjectIdentifierBean
Source§fn default() -> ProjectIdentifierBean
fn default() -> ProjectIdentifierBean
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ProjectIdentifierBean
impl<'de> Deserialize<'de> for ProjectIdentifierBean
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 ProjectIdentifierBean
impl PartialEq for ProjectIdentifierBean
Source§impl Serialize for ProjectIdentifierBean
impl Serialize for ProjectIdentifierBean
impl StructuralPartialEq for ProjectIdentifierBean
Auto Trait Implementations§
impl Freeze for ProjectIdentifierBean
impl RefUnwindSafe for ProjectIdentifierBean
impl Send for ProjectIdentifierBean
impl Sync for ProjectIdentifierBean
impl Unpin for ProjectIdentifierBean
impl UnwindSafe for ProjectIdentifierBean
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