pub struct ActivationSet {
pub enabled: Option<Vec<String>>,
}Fields§
§enabled: Option<Vec<String>>Enabled is every tool name activated for the caller’s org and project.
Implementations§
Source§impl ActivationSet
impl ActivationSet
pub fn new() -> ActivationSet
Trait Implementations§
Source§impl Clone for ActivationSet
impl Clone for ActivationSet
Source§fn clone(&self) -> ActivationSet
fn clone(&self) -> ActivationSet
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 ActivationSet
impl Debug for ActivationSet
Source§impl Default for ActivationSet
impl Default for ActivationSet
Source§fn default() -> ActivationSet
fn default() -> ActivationSet
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ActivationSet
impl<'de> Deserialize<'de> for ActivationSet
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 ActivationSet
impl PartialEq for ActivationSet
Source§impl Serialize for ActivationSet
impl Serialize for ActivationSet
impl StructuralPartialEq for ActivationSet
Auto Trait Implementations§
impl Freeze for ActivationSet
impl RefUnwindSafe for ActivationSet
impl Send for ActivationSet
impl Sync for ActivationSet
impl Unpin for ActivationSet
impl UnsafeUnpin for ActivationSet
impl UnwindSafe for ActivationSet
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