#[repr(C)]pub struct TTF_FillOperation {
pub cmd: TTF_DrawCommand,
pub rect: SDL_Rect,
}Expand description
Fields§
§cmd: TTF_DrawCommand§rect: SDL_RectThe rectangle to fill, in pixels. The x coordinate is relative to the left side of the text area, going right, and the y coordinate is relative to the top side of the text area, going down.
Trait Implementations§
Source§impl Clone for TTF_FillOperation
impl Clone for TTF_FillOperation
Source§fn clone(&self) -> TTF_FillOperation
fn clone(&self) -> TTF_FillOperation
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 Default for TTF_FillOperation
impl Default for TTF_FillOperation
Source§fn default() -> TTF_FillOperation
fn default() -> TTF_FillOperation
Returns the “default value” for a type. Read more
Source§impl Hash for TTF_FillOperation
impl Hash for TTF_FillOperation
Source§impl PartialEq for TTF_FillOperation
impl PartialEq for TTF_FillOperation
impl Copy for TTF_FillOperation
impl Eq for TTF_FillOperation
impl StructuralPartialEq for TTF_FillOperation
Auto Trait Implementations§
impl Freeze for TTF_FillOperation
impl RefUnwindSafe for TTF_FillOperation
impl Send for TTF_FillOperation
impl Sync for TTF_FillOperation
impl Unpin for TTF_FillOperation
impl UnwindSafe for TTF_FillOperation
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