pub struct GetBoxModelCommand { /* private fields */ }Available on crate features
DOM and Runtime only.Expand description
Returns boxes for the given node.
Implementations§
Source§impl GetBoxModelCommand
impl GetBoxModelCommand
pub fn new( node_id: Option<NodeId>, backend_node_id: Option<BackendNodeId>, object_id: Option<RemoteObjectId>, ) -> Self
Sourcepub fn backend_node_id(&self) -> Option<&BackendNodeId>
pub fn backend_node_id(&self) -> Option<&BackendNodeId>
Identifier of the backend node.
Sourcepub fn object_id(&self) -> Option<&RemoteObjectId>
pub fn object_id(&self) -> Option<&RemoteObjectId>
JavaScript object id of the node wrapper.
Trait Implementations§
Source§impl Clone for GetBoxModelCommand
impl Clone for GetBoxModelCommand
Source§fn clone(&self) -> GetBoxModelCommand
fn clone(&self) -> GetBoxModelCommand
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 GetBoxModelCommand
impl Command for GetBoxModelCommand
Source§impl Debug for GetBoxModelCommand
impl Debug for GetBoxModelCommand
Source§impl<'de> Deserialize<'de> for GetBoxModelCommand
impl<'de> Deserialize<'de> for GetBoxModelCommand
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 GetBoxModelCommand
impl RefUnwindSafe for GetBoxModelCommand
impl Send for GetBoxModelCommand
impl Sync for GetBoxModelCommand
impl Unpin for GetBoxModelCommand
impl UnwindSafe for GetBoxModelCommand
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