pub struct ProjectSummary {
pub name: String,
pub title: Option<String>,
pub description: Option<String>,
pub enabled: bool,
pub parent: Option<String>,
pub inheritable: Option<bool>,
}Expand description
One project row — the six fields PROJ-01 names.
Fields§
§name: StringProject name (unique key).
title: Option<String>Display title (null when unset).
description: Option<String>Long description (null when unset).
enabled: boolWhether the project runs.
parent: Option<String>Parent project name — the inheritance link (null at the root).
inheritable: Option<bool>Whether THIS project may serve as a parent (null when the gateway did not report it).
Trait Implementations§
Source§impl Clone for ProjectSummary
impl Clone for ProjectSummary
Source§fn clone(&self) -> ProjectSummary
fn clone(&self) -> ProjectSummary
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ProjectSummary
impl Debug for ProjectSummary
Source§impl PartialEq for ProjectSummary
impl PartialEq for ProjectSummary
Source§impl Serialize for ProjectSummary
impl Serialize for ProjectSummary
impl StructuralPartialEq for ProjectSummary
Auto Trait Implementations§
impl Freeze for ProjectSummary
impl RefUnwindSafe for ProjectSummary
impl Send for ProjectSummary
impl Sync for ProjectSummary
impl Unpin for ProjectSummary
impl UnsafeUnpin for ProjectSummary
impl UnwindSafe for ProjectSummary
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