Struct ory_client::models::project_metadata::ProjectMetadata
source · pub struct ProjectMetadata {
pub created_at: String,
pub hosts: Vec<String>,
pub id: String,
pub name: String,
pub slug: Option<String>,
pub state: StateEnum,
pub subscription_id: Option<String>,
pub subscription_plan: Option<String>,
pub updated_at: String,
}Fields§
§created_at: StringThe Project’s Creation Date
hosts: Vec<String>§id: StringThe project’s ID.
name: StringThe project’s name if set
slug: Option<String>The project’s slug
state: StateEnumThe state of the project. running Running halted Halted deleted Deleted
subscription_id: Option<String>§subscription_plan: Option<String>§updated_at: StringLast Time Project was Updated
Implementations§
Trait Implementations§
source§impl Clone for ProjectMetadata
impl Clone for ProjectMetadata
source§fn clone(&self) -> ProjectMetadata
fn clone(&self) -> ProjectMetadata
Returns a copy 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 ProjectMetadata
impl Debug for ProjectMetadata
source§impl<'de> Deserialize<'de> for ProjectMetadata
impl<'de> Deserialize<'de> for ProjectMetadata
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<ProjectMetadata> for ProjectMetadata
impl PartialEq<ProjectMetadata> for ProjectMetadata
source§fn eq(&self, other: &ProjectMetadata) -> bool
fn eq(&self, other: &ProjectMetadata) -> bool
This method tests for
self and other values to be equal, and is used
by ==.source§impl Serialize for ProjectMetadata
impl Serialize for ProjectMetadata
impl StructuralPartialEq for ProjectMetadata
Auto Trait Implementations§
impl RefUnwindSafe for ProjectMetadata
impl Send for ProjectMetadata
impl Sync for ProjectMetadata
impl Unpin for ProjectMetadata
impl UnwindSafe for ProjectMetadata
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