pub struct ODPSTeam {
pub name: Option<String>,
pub description: Option<String>,
pub members: Option<Vec<ODPSTeamMember>>,
pub tags: Vec<Tag>,
pub custom_properties: Option<Vec<ODPSCustomProperty>>,
pub authoritative_definitions: Option<Vec<ODPSAuthoritativeDefinition>>,
}Expand description
Team
Fields§
§name: Option<String>Team name
description: Option<String>Team description
members: Option<Vec<ODPSTeamMember>>Team members
Tags
custom_properties: Option<Vec<ODPSCustomProperty>>Custom properties
Authoritative definitions
Trait Implementations§
Source§impl<'de> Deserialize<'de> for ODPSTeam
impl<'de> Deserialize<'de> for ODPSTeam
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 ODPSTeam
Auto Trait Implementations§
impl Freeze for ODPSTeam
impl RefUnwindSafe for ODPSTeam
impl Send for ODPSTeam
impl Sync for ODPSTeam
impl Unpin for ODPSTeam
impl UnwindSafe for ODPSTeam
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