pub enum CoverageState {
None,
Partial,
Full,
}Expand description
Captured-union coverage state for an object.
Variants§
None
The object has zero captured area, or a point is outside the union.
Partial
Some but not all object area is captured.
Full
All object area is captured, or a point is inside/on the boundary.
Trait Implementations§
Source§impl Clone for CoverageState
impl Clone for CoverageState
Source§fn clone(&self) -> CoverageState
fn clone(&self) -> CoverageState
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 moreimpl Copy for CoverageState
Source§impl Debug for CoverageState
impl Debug for CoverageState
Source§impl<'de> Deserialize<'de> for CoverageState
impl<'de> Deserialize<'de> for CoverageState
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 CoverageState
Source§impl PartialEq for CoverageState
impl PartialEq for CoverageState
Source§impl Serialize for CoverageState
impl Serialize for CoverageState
impl StructuralPartialEq for CoverageState
Auto Trait Implementations§
impl Freeze for CoverageState
impl RefUnwindSafe for CoverageState
impl Send for CoverageState
impl Sync for CoverageState
impl Unpin for CoverageState
impl UnsafeUnpin for CoverageState
impl UnwindSafe for CoverageState
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