#[non_exhaustive]pub enum Location {
MonitorIndex(i32),
ProjectorGeometry(QtGeometry),
}Expand description
Request information for crate::client::Ui::open_video_mix_projector as part of
OpenVideoMixProjector and crate::client::Ui::open_source_projector as part of
OpenSourceProjector, describing the open location of the projector.
Variants (Non-exhaustive)§
This enum is marked as non-exhaustive
Non-exhaustive enums could have additional variants added in future. Therefore, when matching against variants of non-exhaustive enums, an extra wildcard arm must be added to account for any future variants.
MonitorIndex(i32)
Monitor index, passing -1 opens the projector in windowed mode.
ProjectorGeometry(QtGeometry)
Size/Position data for a windowed projector, in Qt Base64 encoded format.
Auto Trait Implementations§
impl Freeze for Location
impl RefUnwindSafe for Location
impl Send for Location
impl Sync for Location
impl Unpin for Location
impl UnsafeUnpin for Location
impl UnwindSafe for Location
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