pub enum Action {
Query,
Transmit,
TransmitAndDisplay,
Place,
Delete,
Frame,
AnimationControl,
ComposeFrame,
}Expand description
Action to perform with the graphics command
Variants§
Query
Query support and transmission medium availability
Transmit
Transmit image data only (don’t display)
TransmitAndDisplay
Transmit and display the image (a=T)
Place
Display a previously transmitted image (a=p)
Delete
Delete images (a=d)
Frame
Transmit animation frame data (a=f)
AnimationControl
Control animation (a=a)
ComposeFrame
Compose animation frames (a=c)
Trait Implementations§
impl Copy for Action
impl Eq for Action
impl StructuralPartialEq for Action
Auto Trait Implementations§
impl Freeze for Action
impl RefUnwindSafe for Action
impl Send for Action
impl Sync for Action
impl Unpin for Action
impl UnsafeUnpin for Action
impl UnwindSafe for Action
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