pub struct GetNodeForLocationResult {
pub backend_node_id: Box<BackendNodeId>,
pub frame_id: FrameId,
pub node_id: Option<Box<NodeId>>,
}Fields§
§backend_node_id: Box<BackendNodeId>Resulting node.
frame_id: FrameIdFrame this node belongs to.
node_id: Option<Box<NodeId>>Id of the node at given coordinates, only when enabled and requested document.
Trait Implementations§
Source§impl Clone for GetNodeForLocationResult
impl Clone for GetNodeForLocationResult
Source§fn clone(&self) -> GetNodeForLocationResult
fn clone(&self) -> GetNodeForLocationResult
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 GetNodeForLocationResult
impl Debug for GetNodeForLocationResult
Source§impl<'de> Deserialize<'de> for GetNodeForLocationResult
impl<'de> Deserialize<'de> for GetNodeForLocationResult
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 GetNodeForLocationResult
impl PartialEq for GetNodeForLocationResult
Source§impl Serialize for GetNodeForLocationResult
impl Serialize for GetNodeForLocationResult
Source§impl TryFrom<Value> for GetNodeForLocationResult
impl TryFrom<Value> for GetNodeForLocationResult
impl StructuralPartialEq for GetNodeForLocationResult
Auto Trait Implementations§
impl Freeze for GetNodeForLocationResult
impl RefUnwindSafe for GetNodeForLocationResult
impl Send for GetNodeForLocationResult
impl Sync for GetNodeForLocationResult
impl Unpin for GetNodeForLocationResult
impl UnsafeUnpin for GetNodeForLocationResult
impl UnwindSafe for GetNodeForLocationResult
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