pub struct ProcessedFrameInfo {
pub grid: [u32; 2],
pub source_box: [u32; 4],
pub component_mode: ComponentMode,
pub component_count: usize,
pub selected_component_area: Option<u32>,
pub selected_component_bbox: Option<[u32; 4]>,
pub crop_bbox: Option<[u32; 4]>,
pub edge_touch: bool,
pub output_size: [u32; 2],
pub paste_position: [u32; 2],
}Expand description
Per-frame QC details emitted by process_sprite_sheet.
Fields§
§grid: [u32; 2]§source_box: [u32; 4]§component_mode: ComponentMode§component_count: usize§selected_component_area: Option<u32>§selected_component_bbox: Option<[u32; 4]>§crop_bbox: Option<[u32; 4]>§edge_touch: bool§output_size: [u32; 2]§paste_position: [u32; 2]Trait Implementations§
Source§impl Clone for ProcessedFrameInfo
impl Clone for ProcessedFrameInfo
Source§fn clone(&self) -> ProcessedFrameInfo
fn clone(&self) -> ProcessedFrameInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Debug for ProcessedFrameInfo
impl Debug for ProcessedFrameInfo
Source§impl<'de> Deserialize<'de> for ProcessedFrameInfo
impl<'de> Deserialize<'de> for ProcessedFrameInfo
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
Auto Trait Implementations§
impl Freeze for ProcessedFrameInfo
impl RefUnwindSafe for ProcessedFrameInfo
impl Send for ProcessedFrameInfo
impl Sync for ProcessedFrameInfo
impl Unpin for ProcessedFrameInfo
impl UnsafeUnpin for ProcessedFrameInfo
impl UnwindSafe for ProcessedFrameInfo
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more