pub struct ManifestCapabilities {
pub can_read_table: Vec<String>,
pub can_write_table: Vec<String>,
pub can_vector_search: bool,
pub can_index_search: bool,
pub can_call_plugin: Vec<String>,
}Expand description
Capability declarations
Fields§
§can_read_table: Vec<String>Tables the plugin can read (glob patterns)
can_write_table: Vec<String>Tables the plugin can write (glob patterns)
can_vector_search: boolCan perform vector similarity search
can_index_search: boolCan perform index lookups
can_call_plugin: Vec<String>Other plugins this plugin can call
Trait Implementations§
Source§impl Clone for ManifestCapabilities
impl Clone for ManifestCapabilities
Source§fn clone(&self) -> ManifestCapabilities
fn clone(&self) -> ManifestCapabilities
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 ManifestCapabilities
impl Debug for ManifestCapabilities
Source§impl Default for ManifestCapabilities
impl Default for ManifestCapabilities
Source§fn default() -> ManifestCapabilities
fn default() -> ManifestCapabilities
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl Freeze for ManifestCapabilities
impl RefUnwindSafe for ManifestCapabilities
impl Send for ManifestCapabilities
impl Sync for ManifestCapabilities
impl Unpin for ManifestCapabilities
impl UnsafeUnpin for ManifestCapabilities
impl UnwindSafe for ManifestCapabilities
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more