pub struct BrowserExecutableStatus {
pub found: bool,
pub path: Option<String>,
pub version: Option<String>,
pub channel: Option<String>,
}Fields§
§found: bool§path: Option<String>§version: Option<String>§channel: Option<String>Trait Implementations§
Source§impl Clone for BrowserExecutableStatus
impl Clone for BrowserExecutableStatus
Source§fn clone(&self) -> BrowserExecutableStatus
fn clone(&self) -> BrowserExecutableStatus
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 BrowserExecutableStatus
impl Debug for BrowserExecutableStatus
Source§impl Default for BrowserExecutableStatus
impl Default for BrowserExecutableStatus
Source§fn default() -> BrowserExecutableStatus
fn default() -> BrowserExecutableStatus
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for BrowserExecutableStatus
impl<'de> Deserialize<'de> for BrowserExecutableStatus
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 BrowserExecutableStatus
impl RefUnwindSafe for BrowserExecutableStatus
impl Send for BrowserExecutableStatus
impl Sync for BrowserExecutableStatus
impl Unpin for BrowserExecutableStatus
impl UnsafeUnpin for BrowserExecutableStatus
impl UnwindSafe for BrowserExecutableStatus
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