pub struct ChunkAlias {
pub path: String,
pub namespace: Option<String>,
pub primary: bool,
pub registered_at: Option<String>,
}Expand description
An alias for a chunk - human readable path
Fields§
§path: StringThe alias path (e.g., “utils/string-helpers”)
namespace: Option<String>Namespace/scope (e.g., “my-org”)
primary: boolWhether this is the primary/canonical alias
registered_at: Option<String>When this alias was registered
Implementations§
Trait Implementations§
Source§impl Clone for ChunkAlias
impl Clone for ChunkAlias
Source§fn clone(&self) -> ChunkAlias
fn clone(&self) -> ChunkAlias
Returns a duplicate of the value. Read more
1.0.0 · 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 ChunkAlias
impl Debug for ChunkAlias
Source§impl<'de> Deserialize<'de> for ChunkAlias
impl<'de> Deserialize<'de> for ChunkAlias
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 ChunkAlias
impl RefUnwindSafe for ChunkAlias
impl Send for ChunkAlias
impl Sync for ChunkAlias
impl Unpin for ChunkAlias
impl UnwindSafe for ChunkAlias
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