pub struct PermittedProjects {
pub projects: Option<Vec<ProjectIdentifierBean>>,
}
Expand description
PermittedProjects : A list of projects in which a user is granted permissions.
Fields§
§projects: Option<Vec<ProjectIdentifierBean>>
A list of projects.
Implementations§
Source§impl PermittedProjects
impl PermittedProjects
Sourcepub fn new() -> PermittedProjects
pub fn new() -> PermittedProjects
A list of projects in which a user is granted permissions.
Trait Implementations§
Source§impl Clone for PermittedProjects
impl Clone for PermittedProjects
Source§fn clone(&self) -> PermittedProjects
fn clone(&self) -> PermittedProjects
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 PermittedProjects
impl Debug for PermittedProjects
Source§impl Default for PermittedProjects
impl Default for PermittedProjects
Source§fn default() -> PermittedProjects
fn default() -> PermittedProjects
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for PermittedProjects
impl<'de> Deserialize<'de> for PermittedProjects
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 for PermittedProjects
impl PartialEq for PermittedProjects
Source§impl Serialize for PermittedProjects
impl Serialize for PermittedProjects
impl StructuralPartialEq for PermittedProjects
Auto Trait Implementations§
impl Freeze for PermittedProjects
impl RefUnwindSafe for PermittedProjects
impl Send for PermittedProjects
impl Sync for PermittedProjects
impl Unpin for PermittedProjects
impl UnwindSafe for PermittedProjects
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