pub trait ToOwnedDatum {
// Required method
fn to_owned_datum(self) -> Datum;
}
Expand description
This trait is to implement to_owned_datum
for Option<ScalarImpl>
Required Methods§
sourcefn to_owned_datum(self) -> Datum
fn to_owned_datum(self) -> Datum
Convert the datum to an owned Datum
.