pub struct GetFeatureStateParams {
pub feature_state: String,
}Expand description
Returns information about the feature state. getFeatureState
Fields§
§feature_state: StringImplementations§
Source§impl GetFeatureStateParams
impl GetFeatureStateParams
pub fn builder() -> GetFeatureStateParamsBuilder
Source§impl GetFeatureStateParams
impl GetFeatureStateParams
pub const IDENTIFIER: &'static str = "SystemInfo.getFeatureState"
Trait Implementations§
Source§impl Clone for GetFeatureStateParams
impl Clone for GetFeatureStateParams
Source§fn clone(&self) -> GetFeatureStateParams
fn clone(&self) -> GetFeatureStateParams
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 Command for GetFeatureStateParams
impl Command for GetFeatureStateParams
Source§impl Debug for GetFeatureStateParams
impl Debug for GetFeatureStateParams
Source§impl<'de> Deserialize<'de> for GetFeatureStateParams
impl<'de> Deserialize<'de> for GetFeatureStateParams
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 Method for GetFeatureStateParams
impl Method for GetFeatureStateParams
Source§fn identifier(&self) -> MethodId
fn identifier(&self) -> MethodId
The whole string identifier for this method like:
DOM.removeNodeSource§fn domain_name(&self) -> Cow<'static, str>
fn domain_name(&self) -> Cow<'static, str>
The name of the domain this method belongs to:
DOMSource§fn method_name(&self) -> Cow<'static, str>
fn method_name(&self) -> Cow<'static, str>
The standalone identifier of the method inside the domain:
removeNodeSource§impl MethodType for GetFeatureStateParams
impl MethodType for GetFeatureStateParams
Source§impl PartialEq for GetFeatureStateParams
impl PartialEq for GetFeatureStateParams
Source§impl Serialize for GetFeatureStateParams
impl Serialize for GetFeatureStateParams
impl StructuralPartialEq for GetFeatureStateParams
Auto Trait Implementations§
impl Freeze for GetFeatureStateParams
impl RefUnwindSafe for GetFeatureStateParams
impl Send for GetFeatureStateParams
impl Sync for GetFeatureStateParams
impl Unpin for GetFeatureStateParams
impl UnwindSafe for GetFeatureStateParams
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