pub struct CatalogList {
pub generation: u64,
pub modules: Vec<CatalogEntry>,
pub subc_ops: Vec<String>,
}Expand description
Typed response from the daemon’s channel-0 catalog.list operation.
Each module entry exposes the provider roles and tool definitions advertised by that module.
Fields§
§generation: u64§modules: Vec<CatalogEntry>§subc_ops: Vec<String>Trait Implementations§
Source§impl Clone for CatalogList
impl Clone for CatalogList
Source§fn clone(&self) -> CatalogList
fn clone(&self) -> CatalogList
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 CatalogList
impl Debug for CatalogList
Source§impl<'de> Deserialize<'de> for CatalogList
impl<'de> Deserialize<'de> for CatalogList
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
Source§impl PartialEq for CatalogList
impl PartialEq for CatalogList
impl StructuralPartialEq for CatalogList
Auto Trait Implementations§
impl Freeze for CatalogList
impl RefUnwindSafe for CatalogList
impl Send for CatalogList
impl Sync for CatalogList
impl Unpin for CatalogList
impl UnsafeUnpin for CatalogList
impl UnwindSafe for CatalogList
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