Struct lucas_test::LogicalSize
source · [−]pub struct LogicalSize<T> {
pub width: T,
pub height: T,
}Expand description
A size represented in logical pixels.
Fields
width: TWidth.
height: THeight.
Implementations
sourceimpl<T> LogicalSize<T> where
T: Pixel,
impl<T> LogicalSize<T> where
T: Pixel,
sourcepub fn cast<X>(&self) -> LogicalSize<X> where
X: Pixel,
pub fn cast<X>(&self) -> LogicalSize<X> where
X: Pixel,
Casts the logical size to another pixel type.
Trait Implementations
sourceimpl<T> Clone for LogicalSize<T> where
T: Clone,
impl<T> Clone for LogicalSize<T> where
T: Clone,
sourcepub fn clone(&self) -> LogicalSize<T>
pub fn clone(&self) -> LogicalSize<T>
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from source. Read more
sourceimpl<T> Debug for LogicalSize<T> where
T: Debug,
impl<T> Debug for LogicalSize<T> where
T: Debug,
sourceimpl<T> Default for LogicalSize<T> where
T: Default,
impl<T> Default for LogicalSize<T> where
T: Default,
sourcepub fn default() -> LogicalSize<T>
pub fn default() -> LogicalSize<T>
Returns the “default value” for a type. Read more
sourceimpl<'de, T> Deserialize<'de> for LogicalSize<T> where
T: Deserialize<'de>,
impl<'de, T> Deserialize<'de> for LogicalSize<T> where
T: Deserialize<'de>,
sourcepub fn deserialize<__D>(
__deserializer: __D
) -> Result<LogicalSize<T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
pub fn deserialize<__D>(
__deserializer: __D
) -> Result<LogicalSize<T>, <__D as Deserializer<'de>>::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
sourceimpl<T> Hash for LogicalSize<T> where
T: Hash,
impl<T> Hash for LogicalSize<T> where
T: Hash,
sourceimpl<T> PartialEq<LogicalSize<T>> for LogicalSize<T> where
T: PartialEq<T>,
impl<T> PartialEq<LogicalSize<T>> for LogicalSize<T> where
T: PartialEq<T>,
sourcepub fn eq(&self, other: &LogicalSize<T>) -> bool
pub fn eq(&self, other: &LogicalSize<T>) -> bool
This method tests for self and other values to be equal, and is used
by ==. Read more
sourcepub fn ne(&self, other: &LogicalSize<T>) -> bool
pub fn ne(&self, other: &LogicalSize<T>) -> bool
This method tests for !=.
sourceimpl<T> Serialize for LogicalSize<T> where
T: Serialize,
impl<T> Serialize for LogicalSize<T> where
T: Serialize,
sourcepub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
pub fn serialize<__S>(
&self,
__serializer: __S
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error> where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
impl<T> Copy for LogicalSize<T> where
T: Copy,
impl<T> Eq for LogicalSize<T> where
T: Eq,
impl<T> StructuralEq for LogicalSize<T>
impl<T> StructuralPartialEq for LogicalSize<T>
Auto Trait Implementations
impl<T> RefUnwindSafe for LogicalSize<T> where
T: RefUnwindSafe,
impl<T> Send for LogicalSize<T> where
T: Send,
impl<T> Sync for LogicalSize<T> where
T: Sync,
impl<T> Unpin for LogicalSize<T> where
T: Unpin,
impl<T> UnwindSafe for LogicalSize<T> where
T: UnwindSafe,
Blanket Implementations
sourceimpl<T> BorrowMut<T> for T where
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
const: unstable · sourcepub fn borrow_mut(&mut self) -> &mut T
pub fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more
sourceimpl<'de, D, R> CommandArg<'de, R> for D where
D: Deserialize<'de>,
R: Runtime,
impl<'de, D, R> CommandArg<'de, R> for D where
D: Deserialize<'de>,
R: Runtime,
sourcefn from_command(command: CommandItem<'de, R>) -> Result<Self, InvokeError>
fn from_command(command: CommandItem<'de, R>) -> Result<Self, InvokeError>
Derives an instance of Self from the CommandItem. Read more
sourceimpl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
impl<Q, K> Equivalent<K> for Q where
Q: Eq + ?Sized,
K: Borrow<Q> + ?Sized,
sourcepub fn equivalent(&self, key: &K) -> bool
pub fn equivalent(&self, key: &K) -> bool
Compare self to key and return true if they are equal.
impl<T> NoneValue for T where
T: Default,
impl<T> NoneValue for T where
T: Default,
type NoneType = T
pub fn null_value() -> T
pub fn null_value() -> T
The none-equivalent value.
sourceimpl<T> ToOwned for T where
T: Clone,
impl<T> ToOwned for T where
T: Clone,
type Owned = T
type Owned = T
The resulting type after obtaining ownership.
sourcepub fn to_owned(&self) -> T
pub fn to_owned(&self) -> T
Creates owned data from borrowed data, usually by cloning. Read more
sourcepub fn clone_into(&self, target: &mut T)
pub fn clone_into(&self, target: &mut T)
toowned_clone_into)Uses borrowed data to replace owned data, usually by cloning. Read more