pub enum GraphSageAggregator {
Mean,
}Expand description
GraphSAGE v1 aggregator. Version 1 intentionally supports only mean.
Variants§
Mean
Arithmetic mean of the sampled neighborhood.
Trait Implementations§
Source§impl Clone for GraphSageAggregator
impl Clone for GraphSageAggregator
Source§fn clone(&self) -> GraphSageAggregator
fn clone(&self) -> GraphSageAggregator
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 moreimpl Copy for GraphSageAggregator
Source§impl Debug for GraphSageAggregator
impl Debug for GraphSageAggregator
Source§impl Default for GraphSageAggregator
impl Default for GraphSageAggregator
Source§fn default() -> GraphSageAggregator
fn default() -> GraphSageAggregator
Returns the “default value” for a type. Read more
impl Eq for GraphSageAggregator
Source§impl PartialEq for GraphSageAggregator
impl PartialEq for GraphSageAggregator
impl StructuralPartialEq for GraphSageAggregator
Auto Trait Implementations§
impl Freeze for GraphSageAggregator
impl RefUnwindSafe for GraphSageAggregator
impl Send for GraphSageAggregator
impl Sync for GraphSageAggregator
impl Unpin for GraphSageAggregator
impl UnsafeUnpin for GraphSageAggregator
impl UnwindSafe for GraphSageAggregator
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<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.