pub struct ScopeProject {
pub id: Option<String>,
pub name: Option<String>,
pub domain: Option<Domain>,
}Expand description
Project scope information.
Fields§
§id: Option<String>Project ID.
name: Option<String>Project Name.
domain: Option<Domain>Project domain.
Trait Implementations§
Source§impl Clone for ScopeProject
impl Clone for ScopeProject
Source§fn clone(&self) -> ScopeProject
fn clone(&self) -> ScopeProject
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 ComposeSchema for ScopeProject
impl ComposeSchema for ScopeProject
Source§impl Debug for ScopeProject
impl Debug for ScopeProject
Source§impl Default for ScopeProject
impl Default for ScopeProject
Source§fn default() -> ScopeProject
fn default() -> ScopeProject
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ScopeProject
impl<'de> Deserialize<'de> for ScopeProject
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 ScopeProject
impl PartialEq for ScopeProject
Source§impl Serialize for ScopeProject
impl Serialize for ScopeProject
Source§impl ToSchema for ScopeProject
impl ToSchema for ScopeProject
Source§impl Validate for ScopeProject
impl Validate for ScopeProject
Source§impl<'v_a> ValidateArgs<'v_a> for ScopeProject
impl<'v_a> ValidateArgs<'v_a> for ScopeProject
impl StructuralPartialEq for ScopeProject
Auto Trait Implementations§
impl Freeze for ScopeProject
impl RefUnwindSafe for ScopeProject
impl Send for ScopeProject
impl Sync for ScopeProject
impl Unpin for ScopeProject
impl UnsafeUnpin for ScopeProject
impl UnwindSafe for ScopeProject
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