pub struct EmbeddingAnalyzeOptions {
pub by: AnalyzeAlgorithm,
pub via: Option<String>,
pub directed: bool,
pub weight: Option<String>,
pub options: EmbeddingOptions,
}Expand description
Graph-native invocation boundary for an embedding analysis.
Fields§
§by: AnalyzeAlgorithmEmbedding algorithm selected from the closed analysis catalog.
via: Option<String>Optional relationship type filter.
directed: boolWhether to treat edges as directed.
weight: Option<String>Optional edge-weight property.
options: EmbeddingOptionsClosed options for the selected embedding algorithm.
Trait Implementations§
Source§impl Clone for EmbeddingAnalyzeOptions
impl Clone for EmbeddingAnalyzeOptions
Source§fn clone(&self) -> EmbeddingAnalyzeOptions
fn clone(&self) -> EmbeddingAnalyzeOptions
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 EmbeddingAnalyzeOptions
impl Debug for EmbeddingAnalyzeOptions
Source§impl PartialEq for EmbeddingAnalyzeOptions
impl PartialEq for EmbeddingAnalyzeOptions
impl StructuralPartialEq for EmbeddingAnalyzeOptions
Auto Trait Implementations§
impl Freeze for EmbeddingAnalyzeOptions
impl RefUnwindSafe for EmbeddingAnalyzeOptions
impl Send for EmbeddingAnalyzeOptions
impl Sync for EmbeddingAnalyzeOptions
impl Unpin for EmbeddingAnalyzeOptions
impl UnsafeUnpin for EmbeddingAnalyzeOptions
impl UnwindSafe for EmbeddingAnalyzeOptions
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