Enum pregel_rs::graph_frame::MissingColumnError
source · pub enum MissingColumnError {
VertexId,
Subject,
Object,
}
Expand description
MissingColumnError
is an enum that represents errors that occur when a
required column is missing from a DataFrame. The Debug
trait allows for easy
debugging of the enum by printing its values in a formatted way.
Variants§
VertexId
Id
is a variant of MissingColumnError
that represents the error that
occurs when the VertexId
column is missing from a DataFrame.
Subject
Src
is a variant of MissingColumnError
that represents the error that
occurs when the Subject
column is missing from a DataFrame.
Object
Dst
is a variant of MissingColumnError
that represents the error that
occurs when the Object
column is missing from a DataFrame.
Trait Implementations§
source§impl Debug for MissingColumnError
impl Debug for MissingColumnError
Auto Trait Implementations§
impl RefUnwindSafe for MissingColumnError
impl Send for MissingColumnError
impl Sync for MissingColumnError
impl Unpin for MissingColumnError
impl UnwindSafe for MissingColumnError
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