pub struct BlitCell {
pub glyph: String,
pub style: Style,
}Expand description
A single cell in a blit payload.
When present, this cell overwrites the destination.
When absent (null in JSON), the destination cell is left unchanged.
Fields§
§glyph: String§style: StyleTrait Implementations§
Source§impl<'de> Deserialize<'de> for BlitCell
impl<'de> Deserialize<'de> for BlitCell
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
impl Eq for BlitCell
impl StructuralPartialEq for BlitCell
Auto Trait Implementations§
impl Freeze for BlitCell
impl RefUnwindSafe for BlitCell
impl Send for BlitCell
impl Sync for BlitCell
impl Unpin for BlitCell
impl UnsafeUnpin for BlitCell
impl UnwindSafe for BlitCell
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