[−][src]Struct rendy::wsi::winit::Icon
An icon used for the window titlebar, taskbar, etc.
Enabling the icon_loading
feature provides you with several convenience methods for creating
an Icon
from any format supported by the image
crate.
Methods
impl Icon
[src]
pub fn from_rgba(
rgba: Vec<u8>,
width: u32,
height: u32
) -> Result<Icon, BadIcon>
[src]
rgba: Vec<u8>,
width: u32,
height: u32
) -> Result<Icon, BadIcon>
Creates an Icon
from 32bpp RGBA data.
The length of rgba
must be divisible by 4, and width * height
must equal
rgba.len() / 4
. Otherwise, this will return a BadIcon
error.
pub fn from_path<P>(path: P) -> Result<Icon, ImageError> where
P: AsRef<Path>,
[src]
P: AsRef<Path>,
Loads an Icon
from the path of an image on the filesystem.
Requires the icon_loading
feature.
pub fn from_reader<R>(
reader: R,
format: ImageFormat
) -> Result<Icon, ImageError> where
R: Seek + BufRead,
[src]
reader: R,
format: ImageFormat
) -> Result<Icon, ImageError> where
R: Seek + BufRead,
Loads an Icon
from anything implementing BufRead
and Seek
.
Requires the icon_loading
feature.
pub fn from_bytes(bytes: &[u8]) -> Result<Icon, ImageError>
[src]
Loads an Icon
from the unprocessed bytes of an image file.
Uses heuristics to determine format.
Requires the icon_loading
feature.
pub fn from_bytes_with_format(
bytes: &[u8],
format: ImageFormat
) -> Result<Icon, ImageError>
[src]
bytes: &[u8],
format: ImageFormat
) -> Result<Icon, ImageError>
Loads an Icon
from the unprocessed bytes of an image.
Requires the icon_loading
feature.
Trait Implementations
impl Eq for Icon
[src]
impl Clone for Icon
[src]
fn clone(&self) -> Icon
[src]
fn clone_from(&mut self, source: &Self)
1.0.0[src]
Performs copy-assignment from source
. Read more
impl PartialEq<Icon> for Icon
[src]
impl Debug for Icon
[src]
impl From<ImageBuffer<Rgba<u8>, Vec<u8>>> for Icon
[src]
Requires the icon_loading
feature.
impl From<DynamicImage> for Icon
[src]
Requires the icon_loading
feature.
fn from(image: DynamicImage) -> Icon
[src]
Auto Trait Implementations
impl Unpin for Icon
impl Sync for Icon
impl Send for Icon
impl UnwindSafe for Icon
impl RefUnwindSafe for Icon
Blanket Implementations
impl<T> ToOwned for T where
T: Clone,
[src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T
[src]
fn clone_into(&self, target: &mut T)
[src]
impl<T> From<T> for T
[src]
impl<T, U> Into<U> for T where
U: From<T>,
[src]
U: From<T>,
impl<T, U> TryFrom<U> for T where
U: Into<T>,
[src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>
[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
[src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>
[src]
impl<T> Borrow<T> for T where
T: ?Sized,
[src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized,
[src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T
[src]
impl<T> Any for T where
T: 'static + ?Sized,
[src]
T: 'static + ?Sized,
impl<T> Supports<T> for T
[src]
impl<T> SetParameter for T
[src]
fn set<T>(&mut self, value: T) -> <T as Parameter<Self>>::Result where
T: Parameter<Self>,
[src]
T: Parameter<Self>,
Sets value
as a parameter of self
.
impl<T> Erased for T
[src]
impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
[src]
D: AdaptFrom<S, Swp, Dwp, T>,
Dwp: WhitePoint,
Swp: WhitePoint,
T: Component + Float,
fn adapt_into_using<M>(self, method: M) -> D where
M: TransformMatrix<Swp, Dwp, T>,
[src]
M: TransformMatrix<Swp, Dwp, T>,
fn adapt_into(self) -> D
[src]
Convert the source color to the destination color using the bradford method by default Read more