Struct AssetReference

Source
pub struct AssetReference { /* private fields */ }

Implementations§

Source§

impl AssetReference

Source

pub fn new<T: Into<String>>(location: T) -> Self

Create a new location reference.

Source

pub const fn with_options( &self, options: OciOptions, ) -> FetchableAssetReference<'_>

Embed OciOptions with an AssetReference.

Source

pub fn get_relative_part(&self) -> Result<PathBuf, Error>

Get the relative part of the path or return an error if the path does not exist within the base URL.

Source

pub fn baseurl(&self) -> Option<PathBuf>

Source

pub fn path(&self) -> Result<PathBuf, Error>

Source

pub fn location(&self) -> &str

Source

pub fn is_directory(&self) -> bool

Source

pub async fn bytes(&self, options: &OciOptions) -> Result<Bytes, Error>

Source

pub fn exists_outside_cache(&self) -> bool

Check if the asset exists on disk and isn’t in the cache.

Trait Implementations§

Source§

impl Asset for AssetReference

Source§

type Options = OciOptions

Source§

fn update_baseurl(&self, baseurl: &Path)

Source§

fn fetch_with_progress( &self, _options: OciOptions, ) -> Pin<Box<dyn Stream<Item = Progress> + Send + '_>>

Source§

fn fetch( &self, options: OciOptions, ) -> Pin<Box<dyn Future<Output = Result<Vec<u8>, Error>> + Send + Sync>>

Source§

fn name(&self) -> &str

Source§

impl AssetManager for AssetReference

Source§

type Asset = AssetReference

Source§

fn set_baseurl(&self, baseurl: &Path)

Source§

fn assets(&self) -> Assets<'_, Self::Asset>

Source§

fn get_asset_flags(&self) -> u32

Source§

impl Clone for AssetReference

Source§

fn clone(&self) -> AssetReference

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for AssetReference

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for AssetReference

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl From<&Path> for AssetReference

Source§

fn from(s: &Path) -> Self

Converts to this type from the input type.
Source§

impl From<&PathBuf> for AssetReference

Source§

fn from(s: &PathBuf) -> Self

Converts to this type from the input type.
Source§

impl From<&String> for AssetReference

Source§

fn from(s: &String) -> Self

Converts to this type from the input type.
Source§

impl From<&str> for AssetReference

Source§

fn from(s: &str) -> Self

Converts to this type from the input type.
Source§

impl<'a> From<AssetRef<'a, AssetReference>> for AssetReference

Source§

fn from(asset_ref: AssetRef<'a, AssetReference>) -> Self

Converts to this type from the input type.
Source§

impl FromStr for AssetReference

Source§

type Err = Error

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for AssetReference

Source§

fn hash<H: Hasher>(&self, state: &mut H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for AssetReference

Source§

fn eq(&self, other: &Self) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Serialize for AssetReference

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl TryFrom<String> for AssetReference

Source§

type Error = Error

The type returned in the event of a conversion error.
Source§

fn try_from(val: String) -> Result<Self, Error>

Performs the conversion.
Source§

impl Eq for AssetReference

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Compare self to key and return true if they are equal.
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> Same for T

Source§

type Output = T

Should always be Self
Source§

impl<C> SignWithKey<String> for C
where C: ToBase64,

Source§

impl<T> ToBase64 for T
where T: Serialize,

Source§

fn to_base64(&self) -> Result<Cow<'_, str>, Error>

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

impl<T> ErasedDestructor for T
where T: 'static,