#[non_exhaustive]pub enum Request {
Destroy,
Add {
x: i32,
y: i32,
width: i32,
height: i32,
},
Subtract {
x: i32,
y: i32,
width: i32,
height: i32,
},
}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.
Destroy
destroy region
Destroy the region. This will invalidate the object ID.
This is a destructor, once received this object cannot be used any longer.
Add
add rectangle to region
Add the specified rectangle to the region.
Fields
Subtract
subtract rectangle from region
Subtract the specified rectangle from the region.
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Request
impl RefUnwindSafe for Request
impl Send for Request
impl Sync for Request
impl Unpin for Request
impl UnsafeUnpin for Request
impl UnwindSafe for Request
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