pub struct Rect<T> {
pub x: T,
pub y: T,
pub w: T,
pub h: T,
}
Fields
x: T
y: T
w: T
h: T
Trait Implementations
Auto Trait Implementations
impl<T> RefUnwindSafe for Rect<T> where
T: RefUnwindSafe,
impl<T> UnwindSafe for Rect<T> where
T: UnwindSafe,
Blanket Implementations
Mutably borrows from an owned value. Read more