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
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§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§
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