Struct ory_client::models::normalized_project::NormalizedProject
source · pub struct NormalizedProject {
pub created_at: String,
pub current_revision: Box<NormalizedProjectRevision>,
pub hosts: Vec<String>,
pub id: String,
pub slug: String,
pub state: StateEnum,
pub subscription_id: Option<String>,
pub updated_at: String,
}Fields§
§created_at: StringThe Project’s Creation Date
current_revision: Box<NormalizedProjectRevision>§hosts: Vec<String>§id: StringThe project’s ID.
slug: StringThe project’s slug
state: StateEnumThe state of the project. running Running halted Halted
subscription_id: Option<String>§updated_at: StringLast Time Project was Updated
Implementations§
Trait Implementations§
source§impl Clone for NormalizedProject
impl Clone for NormalizedProject
source§fn clone(&self) -> NormalizedProject
fn clone(&self) -> NormalizedProject
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 NormalizedProject
impl Debug for NormalizedProject
source§impl<'de> Deserialize<'de> for NormalizedProject
impl<'de> Deserialize<'de> for NormalizedProject
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<NormalizedProject> for NormalizedProject
impl PartialEq<NormalizedProject> for NormalizedProject
source§fn eq(&self, other: &NormalizedProject) -> bool
fn eq(&self, other: &NormalizedProject) -> bool
This method tests for
self and other values to be equal, and is used
by ==.