pub struct Project {
pub name: String,
pub acronym: Option<String>,
pub description: Option<String>,
pub language: String,
pub forge: Option<String>,
pub docs: Docs,
pub members: BTreeMap<String, Member>,
pub crypt: CryptConfig,
pub created: DateTime<Utc>,
}Fields§
§name: String§acronym: Option<String>§description: Option<String>§language: String§forge: Option<String>§docs: Docs§members: BTreeMap<String, Member>§crypt: CryptConfigCrypt zone registry. Empty / absent means encryption is not in
use; crypt_wraps on members and crypt_zone on items only have
meaning relative to the zones declared here. See ADR-038 and
vision/guardianship/Crypt.md.
created: DateTime<Utc>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
impl StructuralPartialEq for Project
Auto Trait Implementations§
impl Freeze for Project
impl RefUnwindSafe for Project
impl Send for Project
impl Sync for Project
impl Unpin for Project
impl UnsafeUnpin 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