pub struct VectorName(/* private fields */);Expand description
The bundled-vector name that vector callers resolve by (docs/vectors.md):
the stem of a resource/vectors/ SVG (or .symbolset bundle). Vectors and images share one
per-backend resolution namespace — staging guarantees every vector name resolves as whatever
form that backend loads natively (a VectorDrawable, a catalog entry, a rasterized PNG).
Implementations§
Source§impl VectorName
impl VectorName
Sourcepub const fn from_static(name: &'static str) -> VectorName
pub const fn from_static(name: &'static str) -> VectorName
A bundled-vector name known at compile time — the form the generated res::… constants use.
Sourcepub fn dynamic(name: impl Into<String>) -> VectorName
pub fn dynamic(name: impl Into<String>) -> VectorName
Escape hatch for a bundled-vector name computed at runtime (no build-time presence guarantee).
Trait Implementations§
Source§impl Clone for VectorName
impl Clone for VectorName
Source§fn clone(&self) -> VectorName
fn clone(&self) -> VectorName
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 moreSource§impl Debug for VectorName
impl Debug for VectorName
Source§impl Display for VectorName
impl Display for VectorName
Source§impl From<String> for VectorName
impl From<String> for VectorName
Source§fn from(s: String) -> VectorName
fn from(s: String) -> VectorName
Converts to this type from the input type.
Source§impl From<VectorName> for ImageName
Vector and image names resolve through the same per-backend channel (nav-item icons, the
toolbar’s .image(…), bar_action — all name-based); this conversion is that shared
namespace made explicit.
impl From<VectorName> for ImageName
Vector and image names resolve through the same per-backend channel (nav-item icons, the
toolbar’s .image(…), bar_action — all name-based); this conversion is that shared
namespace made explicit.
Source§fn from(v: VectorName) -> ImageName
fn from(v: VectorName) -> ImageName
Converts to this type from the input type.
Source§impl PartialEq for VectorName
impl PartialEq for VectorName
Source§fn eq(&self, other: &VectorName) -> bool
fn eq(&self, other: &VectorName) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for VectorName
impl StructuralPartialEq for VectorName
Auto Trait Implementations§
impl Freeze for VectorName
impl RefUnwindSafe for VectorName
impl Send for VectorName
impl Sync for VectorName
impl Unpin for VectorName
impl UnsafeUnpin for VectorName
impl UnwindSafe for VectorName
Blanket Implementations§
§impl<T> AnyEq for T
impl<T> AnyEq for T
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.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