pub struct GetInlineStylesForNodeResult {
pub inline_style: Option<CssStyle>,
pub attributes_style: Option<CssStyle>,
}Fields§
§inline_style: Option<CssStyle>Inline style for the specified DOM node.
attributes_style: Option<CssStyle>Attribute-defined element style (e.g. resulting from “width=20 height=100%”).
Trait Implementations§
Source§impl Clone for GetInlineStylesForNodeResult
impl Clone for GetInlineStylesForNodeResult
Source§fn clone(&self) -> GetInlineStylesForNodeResult
fn clone(&self) -> GetInlineStylesForNodeResult
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 GetInlineStylesForNodeResult
impl Debug for GetInlineStylesForNodeResult
Source§impl Default for GetInlineStylesForNodeResult
impl Default for GetInlineStylesForNodeResult
Source§fn default() -> GetInlineStylesForNodeResult
fn default() -> GetInlineStylesForNodeResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetInlineStylesForNodeResult
impl<'de> Deserialize<'de> for GetInlineStylesForNodeResult
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 GetInlineStylesForNodeResult
impl PartialEq for GetInlineStylesForNodeResult
Source§fn eq(&self, other: &GetInlineStylesForNodeResult) -> bool
fn eq(&self, other: &GetInlineStylesForNodeResult) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl TryFrom<Value> for GetInlineStylesForNodeResult
impl TryFrom<Value> for GetInlineStylesForNodeResult
impl StructuralPartialEq for GetInlineStylesForNodeResult
Auto Trait Implementations§
impl Freeze for GetInlineStylesForNodeResult
impl RefUnwindSafe for GetInlineStylesForNodeResult
impl Send for GetInlineStylesForNodeResult
impl Sync for GetInlineStylesForNodeResult
impl Unpin for GetInlineStylesForNodeResult
impl UnsafeUnpin for GetInlineStylesForNodeResult
impl UnwindSafe for GetInlineStylesForNodeResult
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