pub struct InstallReq {
pub tool: Option<String>,
}Fields§
§tool: Option<String>Tool is the registry name of the capability to activate (or deactivate) for the caller’s own org and project. Required.
Implementations§
Source§impl InstallReq
impl InstallReq
pub fn new() -> InstallReq
Trait Implementations§
Source§impl Clone for InstallReq
impl Clone for InstallReq
Source§fn clone(&self) -> InstallReq
fn clone(&self) -> InstallReq
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 InstallReq
impl Debug for InstallReq
Source§impl Default for InstallReq
impl Default for InstallReq
Source§fn default() -> InstallReq
fn default() -> InstallReq
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InstallReq
impl<'de> Deserialize<'de> for InstallReq
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 InstallReq
impl PartialEq for InstallReq
Source§impl Serialize for InstallReq
impl Serialize for InstallReq
impl StructuralPartialEq for InstallReq
Auto Trait Implementations§
impl Freeze for InstallReq
impl RefUnwindSafe for InstallReq
impl Send for InstallReq
impl Sync for InstallReq
impl Unpin for InstallReq
impl UnsafeUnpin for InstallReq
impl UnwindSafe for InstallReq
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