pub struct DeploymentRole {
pub name: String,
pub responsibilities: Vec<String>,
pub authority_level: AuthorityLevel,
}Expand description
The agent’s role in the deployment.
Fields§
§name: String§responsibilities: Vec<String>Trait Implementations§
Source§impl Clone for DeploymentRole
impl Clone for DeploymentRole
Source§fn clone(&self) -> DeploymentRole
fn clone(&self) -> DeploymentRole
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 DeploymentRole
impl Debug for DeploymentRole
Source§impl<'de> Deserialize<'de> for DeploymentRole
impl<'de> Deserialize<'de> for DeploymentRole
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 DeploymentRole
impl RefUnwindSafe for DeploymentRole
impl Send for DeploymentRole
impl Sync for DeploymentRole
impl Unpin for DeploymentRole
impl UnsafeUnpin for DeploymentRole
impl UnwindSafe for DeploymentRole
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