pub struct BrewEntry {
pub name: String,
pub args: Vec<String>,
pub link: Option<bool>,
pub conflicts_with: Vec<String>,
pub restart_service: Option<RestartService>,
pub start_service: Option<bool>,
}Expand description
Brew entry (formula)
Fields§
§name: String§args: Vec<String>§link: Option<bool>§conflicts_with: Vec<String>§restart_service: Option<RestartService>§start_service: Option<bool>Trait Implementations§
Source§impl<'de> Deserialize<'de> for BrewEntry
impl<'de> Deserialize<'de> for BrewEntry
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 BrewEntry
impl RefUnwindSafe for BrewEntry
impl Send for BrewEntry
impl Sync for BrewEntry
impl Unpin for BrewEntry
impl UnsafeUnpin for BrewEntry
impl UnwindSafe for BrewEntry
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