pub struct DocProject {
pub created_at: String,
pub current_version: DocVersion,
pub domains: DocProjectDomains,
pub id: String,
pub logos: DocProjectLogos,
pub name: String,
pub settings: DocProjectSettings,
}Expand description
DocProject
Fields§
§created_at: String§current_version: DocVersion§domains: DocProjectDomains§id: String§logos: DocProjectLogos§name: String§settings: DocProjectSettingsTrait Implementations§
Source§impl Clone for DocProject
impl Clone for DocProject
Source§fn clone(&self) -> DocProject
fn clone(&self) -> DocProject
Returns a duplicate 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 DocProject
impl Debug for DocProject
Source§impl Default for DocProject
impl Default for DocProject
Source§fn default() -> DocProject
fn default() -> DocProject
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DocProject
impl<'de> Deserialize<'de> for DocProject
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
Auto Trait Implementations§
impl Freeze for DocProject
impl RefUnwindSafe for DocProject
impl Send for DocProject
impl Sync for DocProject
impl Unpin for DocProject
impl UnsafeUnpin for DocProject
impl UnwindSafe for DocProject
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