pub struct PyPlugin(/* private fields */);Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for PyPlugin
impl<'de> Deserialize<'de> for PyPlugin
Source§fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
fn deserialize<D: Deserializer<'de>>(deserializer: D) -> Result<Self, D::Error>
Deserialize this value from the given Serde deserializer. Read more
Source§impl Plugin for PyPlugin
impl Plugin for PyPlugin
fn clone_box(&self) -> Box<dyn Plugin>
fn initialize(&self, graphrecord: &mut GraphRecord) -> GraphRecordResult<()>
fn finalize(&self, graphrecord: &mut GraphRecord) -> GraphRecordResult<()>
fn pre_set_schema( &self, graphrecord: &mut GraphRecord, context: PreSetSchemaContext, ) -> GraphRecordResult<PreSetSchemaContext>
fn post_set_schema( &self, graphrecord: &mut GraphRecord, ) -> GraphRecordResult<()>
fn pre_freeze_schema( &self, graphrecord: &mut GraphRecord, ) -> GraphRecordResult<()>
fn post_freeze_schema( &self, graphrecord: &mut GraphRecord, ) -> GraphRecordResult<()>
fn pre_unfreeze_schema( &self, graphrecord: &mut GraphRecord, ) -> GraphRecordResult<()>
fn post_unfreeze_schema( &self, graphrecord: &mut GraphRecord, ) -> GraphRecordResult<()>
fn pre_add_node( &self, graphrecord: &mut GraphRecord, context: PreAddNodeContext, ) -> GraphRecordResult<PreAddNodeContext>
fn post_add_node( &self, graphrecord: &mut GraphRecord, context: PostAddNodeContext, ) -> GraphRecordResult<()>
fn pre_add_node_with_group( &self, graphrecord: &mut GraphRecord, context: PreAddNodeWithGroupContext, ) -> GraphRecordResult<PreAddNodeWithGroupContext>
fn post_add_node_with_group( &self, graphrecord: &mut GraphRecord, context: PostAddNodeWithGroupContext, ) -> GraphRecordResult<()>
fn pre_remove_node( &self, graphrecord: &mut GraphRecord, context: PreRemoveNodeContext, ) -> GraphRecordResult<PreRemoveNodeContext>
fn post_remove_node( &self, graphrecord: &mut GraphRecord, context: PostRemoveNodeContext, ) -> GraphRecordResult<()>
fn pre_add_nodes( &self, graphrecord: &mut GraphRecord, context: PreAddNodesContext, ) -> GraphRecordResult<PreAddNodesContext>
fn post_add_nodes( &self, graphrecord: &mut GraphRecord, context: PostAddNodesContext, ) -> GraphRecordResult<()>
fn pre_add_nodes_with_group( &self, graphrecord: &mut GraphRecord, context: PreAddNodesWithGroupContext, ) -> GraphRecordResult<PreAddNodesWithGroupContext>
fn post_add_nodes_with_group( &self, graphrecord: &mut GraphRecord, context: PostAddNodesWithGroupContext, ) -> GraphRecordResult<()>
fn pre_add_nodes_dataframes( &self, graphrecord: &mut GraphRecord, context: PreAddNodesDataframesContext, ) -> GraphRecordResult<PreAddNodesDataframesContext>
fn post_add_nodes_dataframes( &self, graphrecord: &mut GraphRecord, context: PostAddNodesDataframesContext, ) -> GraphRecordResult<()>
fn pre_add_nodes_dataframes_with_group( &self, graphrecord: &mut GraphRecord, context: PreAddNodesDataframesWithGroupContext, ) -> GraphRecordResult<PreAddNodesDataframesWithGroupContext>
fn post_add_nodes_dataframes_with_group( &self, graphrecord: &mut GraphRecord, context: PostAddNodesDataframesWithGroupContext, ) -> GraphRecordResult<()>
fn pre_add_edge( &self, graphrecord: &mut GraphRecord, context: PreAddEdgeContext, ) -> GraphRecordResult<PreAddEdgeContext>
fn post_add_edge( &self, graphrecord: &mut GraphRecord, context: PostAddEdgeContext, ) -> GraphRecordResult<()>
fn pre_add_edge_with_group( &self, graphrecord: &mut GraphRecord, context: PreAddEdgeWithGroupContext, ) -> GraphRecordResult<PreAddEdgeWithGroupContext>
fn post_add_edge_with_group( &self, graphrecord: &mut GraphRecord, context: PostAddEdgeWithGroupContext, ) -> GraphRecordResult<()>
fn pre_remove_edge( &self, graphrecord: &mut GraphRecord, context: PreRemoveEdgeContext, ) -> GraphRecordResult<PreRemoveEdgeContext>
fn post_remove_edge( &self, graphrecord: &mut GraphRecord, context: PostRemoveEdgeContext, ) -> GraphRecordResult<()>
fn pre_add_edges( &self, graphrecord: &mut GraphRecord, context: PreAddEdgesContext, ) -> GraphRecordResult<PreAddEdgesContext>
fn post_add_edges( &self, graphrecord: &mut GraphRecord, context: PostAddEdgesContext, ) -> GraphRecordResult<()>
fn pre_add_edges_with_group( &self, graphrecord: &mut GraphRecord, context: PreAddEdgesWithGroupContext, ) -> GraphRecordResult<PreAddEdgesWithGroupContext>
fn post_add_edges_with_group( &self, graphrecord: &mut GraphRecord, context: PostAddEdgesWithGroupContext, ) -> GraphRecordResult<()>
fn pre_add_edges_dataframes( &self, graphrecord: &mut GraphRecord, context: PreAddEdgesDataframesContext, ) -> GraphRecordResult<PreAddEdgesDataframesContext>
fn post_add_edges_dataframes( &self, graphrecord: &mut GraphRecord, context: PostAddEdgesDataframesContext, ) -> GraphRecordResult<()>
fn pre_add_edges_dataframes_with_group( &self, graphrecord: &mut GraphRecord, context: PreAddEdgesDataframesWithGroupContext, ) -> GraphRecordResult<PreAddEdgesDataframesWithGroupContext>
fn post_add_edges_dataframes_with_group( &self, graphrecord: &mut GraphRecord, context: PostAddEdgesDataframesWithGroupContext, ) -> GraphRecordResult<()>
fn pre_add_group( &self, graphrecord: &mut GraphRecord, context: PreAddGroupContext, ) -> GraphRecordResult<PreAddGroupContext>
fn post_add_group( &self, graphrecord: &mut GraphRecord, context: PostAddGroupContext, ) -> GraphRecordResult<()>
fn pre_remove_group( &self, graphrecord: &mut GraphRecord, context: PreRemoveGroupContext, ) -> GraphRecordResult<PreRemoveGroupContext>
fn post_remove_group( &self, graphrecord: &mut GraphRecord, context: PostRemoveGroupContext, ) -> GraphRecordResult<()>
fn pre_add_node_to_group( &self, graphrecord: &mut GraphRecord, context: PreAddNodeToGroupContext, ) -> GraphRecordResult<PreAddNodeToGroupContext>
fn post_add_node_to_group( &self, graphrecord: &mut GraphRecord, context: PostAddNodeToGroupContext, ) -> GraphRecordResult<()>
fn pre_add_edge_to_group( &self, graphrecord: &mut GraphRecord, context: PreAddEdgeToGroupContext, ) -> GraphRecordResult<PreAddEdgeToGroupContext>
fn post_add_edge_to_group( &self, graphrecord: &mut GraphRecord, context: PostAddEdgeToGroupContext, ) -> GraphRecordResult<()>
fn pre_remove_node_from_group( &self, graphrecord: &mut GraphRecord, context: PreRemoveNodeFromGroupContext, ) -> GraphRecordResult<PreRemoveNodeFromGroupContext>
fn post_remove_node_from_group( &self, graphrecord: &mut GraphRecord, context: PostRemoveNodeFromGroupContext, ) -> GraphRecordResult<()>
fn pre_remove_edge_from_group( &self, graphrecord: &mut GraphRecord, context: PreRemoveEdgeFromGroupContext, ) -> GraphRecordResult<PreRemoveEdgeFromGroupContext>
fn post_remove_edge_from_group( &self, graphrecord: &mut GraphRecord, context: PostRemoveEdgeFromGroupContext, ) -> GraphRecordResult<()>
fn pre_clear(&self, graphrecord: &mut GraphRecord) -> GraphRecordResult<()>
fn post_clear(&self, graphrecord: &mut GraphRecord) -> GraphRecordResult<()>
Auto Trait Implementations§
impl Freeze for PyPlugin
impl !RefUnwindSafe for PyPlugin
impl Send for PyPlugin
impl Sync for PyPlugin
impl Unpin for PyPlugin
impl UnsafeUnpin for PyPlugin
impl UnwindSafe for PyPlugin
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> 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