pub struct AboutAdditionalRoleInfo {
pub role_sets: Option<Vec<AboutAdditionalRoleInfoRoleSets>>,
pub type_: Option<String>,
}Expand description
Information about supported additional roles per file type. The most specific type takes precedence.
This type is not used in any activity, and only used as part of another schema.
Fields§
§role_sets: Option<Vec<AboutAdditionalRoleInfoRoleSets>>The supported additional roles per primary role.
type_: Option<String>The content type that this additional role info applies to.
Trait Implementations§
Source§impl Clone for AboutAdditionalRoleInfo
impl Clone for AboutAdditionalRoleInfo
Source§fn clone(&self) -> AboutAdditionalRoleInfo
fn clone(&self) -> AboutAdditionalRoleInfo
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 AboutAdditionalRoleInfo
impl Debug for AboutAdditionalRoleInfo
Source§impl Default for AboutAdditionalRoleInfo
impl Default for AboutAdditionalRoleInfo
Source§fn default() -> AboutAdditionalRoleInfo
fn default() -> AboutAdditionalRoleInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AboutAdditionalRoleInfo
impl<'de> Deserialize<'de> for AboutAdditionalRoleInfo
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 Serialize for AboutAdditionalRoleInfo
impl Serialize for AboutAdditionalRoleInfo
impl NestedType for AboutAdditionalRoleInfo
impl Part for AboutAdditionalRoleInfo
Auto Trait Implementations§
impl Freeze for AboutAdditionalRoleInfo
impl RefUnwindSafe for AboutAdditionalRoleInfo
impl Send for AboutAdditionalRoleInfo
impl Sync for AboutAdditionalRoleInfo
impl Unpin for AboutAdditionalRoleInfo
impl UnwindSafe for AboutAdditionalRoleInfo
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