pub enum ScreenshotTargetResult {
Surface {
workspace_id: WorkspaceId,
pane_id: PaneId,
surface_id: SurfaceId,
},
Pane {
workspace_id: WorkspaceId,
pane_id: PaneId,
},
WorkspaceWindow {
workspace_id: WorkspaceId,
workspace_window_id: WorkspaceWindowId,
},
WorkspaceCanvas {
workspace_id: WorkspaceId,
},
}Variants§
Trait Implementations§
Source§impl Clone for ScreenshotTargetResult
impl Clone for ScreenshotTargetResult
Source§fn clone(&self) -> ScreenshotTargetResult
fn clone(&self) -> ScreenshotTargetResult
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 ScreenshotTargetResult
impl Debug for ScreenshotTargetResult
Source§impl<'de> Deserialize<'de> for ScreenshotTargetResult
impl<'de> Deserialize<'de> for ScreenshotTargetResult
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 ScreenshotTargetResult
impl PartialEq for ScreenshotTargetResult
Source§impl Serialize for ScreenshotTargetResult
impl Serialize for ScreenshotTargetResult
impl Eq for ScreenshotTargetResult
impl StructuralPartialEq for ScreenshotTargetResult
Auto Trait Implementations§
impl Freeze for ScreenshotTargetResult
impl RefUnwindSafe for ScreenshotTargetResult
impl Send for ScreenshotTargetResult
impl Sync for ScreenshotTargetResult
impl Unpin for ScreenshotTargetResult
impl UnsafeUnpin for ScreenshotTargetResult
impl UnwindSafe for ScreenshotTargetResult
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.