Struct ory_client::models::project::Project
source · pub struct Project {
pub cors_admin: Box<Cors>,
pub cors_public: Box<Cors>,
pub id: String,
pub name: String,
pub revision_id: String,
pub services: Box<ProjectServices>,
pub slug: String,
pub state: StateEnum,
}Fields§
§cors_admin: Box<Cors>§cors_public: Box<Cors>§id: StringThe project’s ID.
name: StringThe name of the project.
revision_id: StringThe configuration revision ID.
services: Box<ProjectServices>§slug: StringThe project’s slug
state: StateEnumThe state of the project. running Running halted Halted deleted Deleted
Implementations§
Trait Implementations§
source§impl<'de> Deserialize<'de> for Project
impl<'de> Deserialize<'de> for Project
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<Project> for Project
impl PartialEq<Project> for Project
impl StructuralPartialEq for Project
Auto Trait Implementations§
impl RefUnwindSafe for Project
impl Send for Project
impl Sync for Project
impl Unpin for Project
impl UnwindSafe for Project
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