pub struct OrganizationalProject {
pub name: String,
pub description: Option<String>,
pub responsible_organizations: Vec<OrganizationRef>,
}Fields§
§name: String§description: Option<String>§responsible_organizations: Vec<OrganizationRef>Trait Implementations§
Source§impl Clone for OrganizationalProject
impl Clone for OrganizationalProject
Source§fn clone(&self) -> OrganizationalProject
fn clone(&self) -> OrganizationalProject
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 OrganizationalProject
impl Debug for OrganizationalProject
Source§impl PartialEq for OrganizationalProject
impl PartialEq for OrganizationalProject
Source§fn eq(&self, other: &OrganizationalProject) -> bool
fn eq(&self, other: &OrganizationalProject) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for OrganizationalProject
Auto Trait Implementations§
impl Freeze for OrganizationalProject
impl RefUnwindSafe for OrganizationalProject
impl Send for OrganizationalProject
impl Sync for OrganizationalProject
impl Unpin for OrganizationalProject
impl UnsafeUnpin for OrganizationalProject
impl UnwindSafe for OrganizationalProject
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