pub struct ResolvedPath {
pub pod: Option<String>,
pub storage_path: String,
}Expand description
Result of resolving a request to a pod + storage path.
Fields§
§pod: Option<String>Pod identifier, or None for single-tenant / root pod.
storage_path: StringStorage path relative to the pod root (or global root when
pod is None). Verbatim from the URL — no percent-decoding
here; callers handle encoding via their storage trait.
Trait Implementations§
Source§impl Clone for ResolvedPath
impl Clone for ResolvedPath
Source§fn clone(&self) -> ResolvedPath
fn clone(&self) -> ResolvedPath
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 ResolvedPath
impl Debug for ResolvedPath
Source§impl PartialEq for ResolvedPath
impl PartialEq for ResolvedPath
Source§fn eq(&self, other: &ResolvedPath) -> bool
fn eq(&self, other: &ResolvedPath) -> bool
Tests for
self and other values to be equal, and is used by ==.impl Eq for ResolvedPath
impl StructuralPartialEq for ResolvedPath
Auto Trait Implementations§
impl Freeze for ResolvedPath
impl RefUnwindSafe for ResolvedPath
impl Send for ResolvedPath
impl Sync for ResolvedPath
impl Unpin for ResolvedPath
impl UnsafeUnpin for ResolvedPath
impl UnwindSafe for ResolvedPath
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