pub struct Icons {Show 24 fields
pub upload: String,
pub download: String,
pub arrow_left: String,
pub arrow_right: String,
pub arrow_up: String,
pub arrow_down: String,
pub triangle_right: String,
pub triangle_down: String,
pub file: String,
pub disk: String,
pub help: String,
pub success: String,
pub failure: String,
pub searching: String,
pub verifying: String,
pub loading: String,
pub pause: String,
pub idle: String,
pub magnifying_glass: String,
pub provider_disabled: String,
pub provider_category_general: String,
pub provider_category_anime: String,
pub sort_ascending: String,
pub sort_descending: String,
}Fields§
§upload: String§download: String§arrow_left: String§arrow_right: String§arrow_up: String§arrow_down: String§triangle_right: String§triangle_down: String§file: String§disk: String§help: String§success: String§failure: String§searching: String§verifying: String§loading: String§pause: String§idle: String§magnifying_glass: String§provider_disabled: String§provider_category_general: String§provider_category_anime: String§sort_ascending: String§sort_descending: StringTrait Implementations§
Source§impl<'de> Deserialize<'de> for Icons
impl<'de> Deserialize<'de> for Icons
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 Icons
impl RefUnwindSafe for Icons
impl Send for Icons
impl Sync for Icons
impl Unpin for Icons
impl UnwindSafe for Icons
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
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