Enum bson::raw::RawBsonRef
source · pub enum RawBsonRef<'a> {
Show 21 variants
Double(f64),
String(&'a str),
Array(&'a RawArray),
Document(&'a RawDocument),
Boolean(bool),
Null,
RegularExpression(RawRegexRef<'a>),
JavaScriptCode(&'a str),
JavaScriptCodeWithScope(RawJavaScriptCodeWithScopeRef<'a>),
Int32(i32),
Int64(i64),
Timestamp(Timestamp),
Binary(RawBinaryRef<'a>),
ObjectId(ObjectId),
DateTime(DateTime),
Symbol(&'a str),
Decimal128(Decimal128),
Undefined,
MaxKey,
MinKey,
DbPointer(RawDbPointerRef<'a>),
}
Expand description
A BSON value referencing raw bytes stored elsewhere.
Variants§
Double(f64)
64-bit binary floating point
String(&'a str)
UTF-8 string
Array(&'a RawArray)
Array
Document(&'a RawDocument)
Embedded document
Boolean(bool)
Boolean value
Null
Null value
RegularExpression(RawRegexRef<'a>)
Regular expression
JavaScriptCode(&'a str)
JavaScript code
JavaScriptCodeWithScope(RawJavaScriptCodeWithScopeRef<'a>)
JavaScript code w/ scope
Int32(i32)
32-bit signed integer
Int64(i64)
64-bit signed integer
Timestamp(Timestamp)
Timestamp
Binary(RawBinaryRef<'a>)
Binary data
ObjectId(ObjectId)
DateTime(DateTime)
UTC datetime
Symbol(&'a str)
Symbol (Deprecated)
Decimal128(Decimal128)
Undefined
Undefined value (Deprecated)
MaxKey
Max key
MinKey
Min key
DbPointer(RawDbPointerRef<'a>)
DBPointer (Deprecated)
Implementations§
source§impl<'a> RawBsonRef<'a>
impl<'a> RawBsonRef<'a>
sourcepub fn element_type(&self) -> ElementType
pub fn element_type(&self) -> ElementType
Get the ElementType
of this value.
sourcepub fn as_f64(self) -> Option<f64>
pub fn as_f64(self) -> Option<f64>
Gets the f64
that’s referenced or returns None
if the referenced value isn’t a BSON
double.
sourcepub fn as_str(self) -> Option<&'a str>
pub fn as_str(self) -> Option<&'a str>
Gets the &str
that’s referenced or returns None
if the referenced value isn’t a BSON
String.
sourcepub fn as_document(self) -> Option<&'a RawDocument>
pub fn as_document(self) -> Option<&'a RawDocument>
Gets the RawDocument
that’s referenced or returns None
if the referenced value
isn’t a BSON document.
sourcepub fn as_bool(self) -> Option<bool>
pub fn as_bool(self) -> Option<bool>
Gets the bool
that’s referenced or returns None
if the referenced value isn’t a BSON
boolean.
sourcepub fn as_i32(self) -> Option<i32>
pub fn as_i32(self) -> Option<i32>
Gets the i32
that’s referenced or returns None
if the referenced value isn’t a BSON
Int32.
sourcepub fn as_i64(self) -> Option<i64>
pub fn as_i64(self) -> Option<i64>
Gets the i64
that’s referenced or returns None
if the referenced value isn’t a BSON
Int64.
sourcepub fn as_object_id(self) -> Option<ObjectId>
pub fn as_object_id(self) -> Option<ObjectId>
Gets the crate::oid::ObjectId
that’s referenced or returns None
if the referenced
value isn’t a BSON ObjectID.
sourcepub fn as_binary(self) -> Option<RawBinaryRef<'a>>
pub fn as_binary(self) -> Option<RawBinaryRef<'a>>
Gets the RawBinaryRef
that’s referenced or returns None
if the referenced value
isn’t a BSON binary.
sourcepub fn as_regex(self) -> Option<RawRegexRef<'a>>
pub fn as_regex(self) -> Option<RawRegexRef<'a>>
Gets the RawRegexRef
that’s referenced or returns None
if the referenced value isn’t
a BSON regular expression.
sourcepub fn as_datetime(self) -> Option<DateTime>
pub fn as_datetime(self) -> Option<DateTime>
Gets the crate::DateTime
that’s referenced or returns None
if the referenced value
isn’t a BSON datetime.
sourcepub fn as_symbol(self) -> Option<&'a str>
pub fn as_symbol(self) -> Option<&'a str>
Gets the symbol that’s referenced or returns None
if the referenced value isn’t a BSON
symbol.
sourcepub fn as_timestamp(self) -> Option<Timestamp>
pub fn as_timestamp(self) -> Option<Timestamp>
Gets the crate::Timestamp
that’s referenced or returns None
if the referenced value
isn’t a BSON timestamp.
sourcepub fn as_null(self) -> Option<()>
pub fn as_null(self) -> Option<()>
Gets the null value that’s referenced or returns None
if the referenced value isn’t a
BSON null.
sourcepub fn as_db_pointer(self) -> Option<RawDbPointerRef<'a>>
pub fn as_db_pointer(self) -> Option<RawDbPointerRef<'a>>
Gets the RawDbPointerRef
that’s referenced or returns None
if the referenced value
isn’t a BSON DB pointer.
sourcepub fn as_javascript(self) -> Option<&'a str>
pub fn as_javascript(self) -> Option<&'a str>
Gets the code that’s referenced or returns None
if the referenced value isn’t a BSON
JavaScript.
sourcepub fn as_javascript_with_scope(
self
) -> Option<RawJavaScriptCodeWithScopeRef<'a>>
pub fn as_javascript_with_scope( self ) -> Option<RawJavaScriptCodeWithScopeRef<'a>>
Gets the RawJavaScriptCodeWithScope
that’s referenced or returns None
if the
referenced value isn’t a BSON JavaScript with scope.
sourcepub fn to_raw_bson(self) -> RawBson
pub fn to_raw_bson(self) -> RawBson
Convert this RawBsonRef
to the equivalent RawBson
.
Trait Implementations§
source§impl<'a> Clone for RawBsonRef<'a>
impl<'a> Clone for RawBsonRef<'a>
source§fn clone(&self) -> RawBsonRef<'a>
fn clone(&self) -> RawBsonRef<'a>
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl<'a> Debug for RawBsonRef<'a>
impl<'a> Debug for RawBsonRef<'a>
source§impl<'de: 'a, 'a> Deserialize<'de> for RawBsonRef<'a>
impl<'de: 'a, 'a> Deserialize<'de> for RawBsonRef<'a>
source§fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where
D: Deserializer<'de>,
fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>where D: Deserializer<'de>,
source§impl<'a> From<&'a Binary> for RawBsonRef<'a>
impl<'a> From<&'a Binary> for RawBsonRef<'a>
source§impl<'a> From<&'a RawArray> for RawBsonRef<'a>
impl<'a> From<&'a RawArray> for RawBsonRef<'a>
source§impl<'a> From<&'a RawArrayBuf> for RawBsonRef<'a>
impl<'a> From<&'a RawArrayBuf> for RawBsonRef<'a>
source§fn from(a: &'a RawArrayBuf) -> Self
fn from(a: &'a RawArrayBuf) -> Self
source§impl<'a> From<&'a RawDocument> for RawBsonRef<'a>
impl<'a> From<&'a RawDocument> for RawBsonRef<'a>
source§fn from(d: &'a RawDocument) -> Self
fn from(d: &'a RawDocument) -> Self
source§impl<'a> From<&'a RawDocumentBuf> for RawBsonRef<'a>
impl<'a> From<&'a RawDocumentBuf> for RawBsonRef<'a>
source§fn from(d: &'a RawDocumentBuf) -> Self
fn from(d: &'a RawDocumentBuf) -> Self
source§impl<'a> From<&'a str> for RawBsonRef<'a>
impl<'a> From<&'a str> for RawBsonRef<'a>
source§impl<'a> From<DateTime> for RawBsonRef<'a>
impl<'a> From<DateTime> for RawBsonRef<'a>
source§impl<'a> From<Decimal128> for RawBsonRef<'a>
impl<'a> From<Decimal128> for RawBsonRef<'a>
source§fn from(d: Decimal128) -> Self
fn from(d: Decimal128) -> Self
source§impl<'a> From<ObjectId> for RawBsonRef<'a>
impl<'a> From<ObjectId> for RawBsonRef<'a>
source§impl<'a> From<RawBinaryRef<'a>> for RawBsonRef<'a>
impl<'a> From<RawBinaryRef<'a>> for RawBsonRef<'a>
source§fn from(b: RawBinaryRef<'a>) -> Self
fn from(b: RawBinaryRef<'a>) -> Self
source§impl<'a> From<RawJavaScriptCodeWithScopeRef<'a>> for RawBsonRef<'a>
impl<'a> From<RawJavaScriptCodeWithScopeRef<'a>> for RawBsonRef<'a>
source§fn from(code_w_scope: RawJavaScriptCodeWithScopeRef<'a>) -> Self
fn from(code_w_scope: RawJavaScriptCodeWithScopeRef<'a>) -> Self
source§impl<'a> From<RawRegexRef<'a>> for RawBsonRef<'a>
impl<'a> From<RawRegexRef<'a>> for RawBsonRef<'a>
source§fn from(re: RawRegexRef<'a>) -> Self
fn from(re: RawRegexRef<'a>) -> Self
source§impl<'a> From<Timestamp> for RawBsonRef<'a>
impl<'a> From<Timestamp> for RawBsonRef<'a>
source§impl<'a> From<bool> for RawBsonRef<'a>
impl<'a> From<bool> for RawBsonRef<'a>
source§impl<'a> From<f64> for RawBsonRef<'a>
impl<'a> From<f64> for RawBsonRef<'a>
source§impl<'a> From<i32> for RawBsonRef<'a>
impl<'a> From<i32> for RawBsonRef<'a>
source§impl<'a> From<i64> for RawBsonRef<'a>
impl<'a> From<i64> for RawBsonRef<'a>
source§impl<'a> PartialEq for RawBsonRef<'a>
impl<'a> PartialEq for RawBsonRef<'a>
source§fn eq(&self, other: &RawBsonRef<'a>) -> bool
fn eq(&self, other: &RawBsonRef<'a>) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl<'a> Serialize for RawBsonRef<'a>
impl<'a> Serialize for RawBsonRef<'a>
source§impl<'a> TryFrom<RawBsonRef<'a>> for Bson
impl<'a> TryFrom<RawBsonRef<'a>> for Bson
impl<'a> Copy for RawBsonRef<'a>
impl<'a> StructuralPartialEq for RawBsonRef<'a>
Auto Trait Implementations§
impl<'a> RefUnwindSafe for RawBsonRef<'a>
impl<'a> Send for RawBsonRef<'a>
impl<'a> Sync for RawBsonRef<'a>
impl<'a> Unpin for RawBsonRef<'a>
impl<'a> UnwindSafe for RawBsonRef<'a>
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
source§impl<T> FmtForward for T
impl<T> FmtForward for T
source§fn fmt_binary(self) -> FmtBinary<Self>where
Self: Binary,
fn fmt_binary(self) -> FmtBinary<Self>where Self: Binary,
self
to use its Binary
implementation when Debug
-formatted.source§fn fmt_display(self) -> FmtDisplay<Self>where
Self: Display,
fn fmt_display(self) -> FmtDisplay<Self>where Self: Display,
self
to use its Display
implementation when
Debug
-formatted.source§fn fmt_lower_exp(self) -> FmtLowerExp<Self>where
Self: LowerExp,
fn fmt_lower_exp(self) -> FmtLowerExp<Self>where Self: LowerExp,
self
to use its LowerExp
implementation when
Debug
-formatted.source§fn fmt_lower_hex(self) -> FmtLowerHex<Self>where
Self: LowerHex,
fn fmt_lower_hex(self) -> FmtLowerHex<Self>where Self: LowerHex,
self
to use its LowerHex
implementation when
Debug
-formatted.source§fn fmt_octal(self) -> FmtOctal<Self>where
Self: Octal,
fn fmt_octal(self) -> FmtOctal<Self>where Self: Octal,
self
to use its Octal
implementation when Debug
-formatted.source§fn fmt_pointer(self) -> FmtPointer<Self>where
Self: Pointer,
fn fmt_pointer(self) -> FmtPointer<Self>where Self: Pointer,
self
to use its Pointer
implementation when
Debug
-formatted.source§fn fmt_upper_exp(self) -> FmtUpperExp<Self>where
Self: UpperExp,
fn fmt_upper_exp(self) -> FmtUpperExp<Self>where Self: UpperExp,
self
to use its UpperExp
implementation when
Debug
-formatted.source§fn fmt_upper_hex(self) -> FmtUpperHex<Self>where
Self: UpperHex,
fn fmt_upper_hex(self) -> FmtUpperHex<Self>where Self: UpperHex,
self
to use its UpperHex
implementation when
Debug
-formatted.source§impl<T> Pipe for Twhere
T: ?Sized,
impl<T> Pipe for Twhere T: ?Sized,
source§fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere
Self: Sized,
fn pipe<R>(self, func: impl FnOnce(Self) -> R) -> Rwhere Self: Sized,
source§fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref<'a, R>(&'a self, func: impl FnOnce(&'a Self) -> R) -> Rwhere R: 'a,
self
and passes that borrow into the pipe function. Read moresource§fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere
R: 'a,
fn pipe_ref_mut<'a, R>(&'a mut self, func: impl FnOnce(&'a mut Self) -> R) -> Rwhere R: 'a,
self
and passes that borrow into the pipe function. Read moresource§fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere
Self: Borrow<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow<'a, B, R>(&'a self, func: impl FnOnce(&'a B) -> R) -> Rwhere Self: Borrow<B>, B: 'a + ?Sized, R: 'a,
source§fn pipe_borrow_mut<'a, B, R>(
&'a mut self,
func: impl FnOnce(&'a mut B) -> R
) -> Rwhere
Self: BorrowMut<B>,
B: 'a + ?Sized,
R: 'a,
fn pipe_borrow_mut<'a, B, R>( &'a mut self, func: impl FnOnce(&'a mut B) -> R ) -> Rwhere Self: BorrowMut<B>, B: 'a + ?Sized, R: 'a,
source§fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere
Self: AsRef<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_ref<'a, U, R>(&'a self, func: impl FnOnce(&'a U) -> R) -> Rwhere Self: AsRef<U>, U: 'a + ?Sized, R: 'a,
self
, then passes self.as_ref()
into the pipe function.source§fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere
Self: AsMut<U>,
U: 'a + ?Sized,
R: 'a,
fn pipe_as_mut<'a, U, R>(&'a mut self, func: impl FnOnce(&'a mut U) -> R) -> Rwhere Self: AsMut<U>, U: 'a + ?Sized, R: 'a,
self
, then passes self.as_mut()
into the pipe
function.source§impl<T> Tap for T
impl<T> Tap for T
source§fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,
Borrow<B>
of a value. Read moresource§fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,
BorrowMut<B>
of a value. Read moresource§fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
fn tap_ref<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,
AsRef<R>
view of a value. Read moresource§fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,
AsMut<R>
view of a value. Read moresource§fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere
Self: Deref<Target = T>,
T: ?Sized,
fn tap_deref<T>(self, func: impl FnOnce(&T)) -> Selfwhere Self: Deref<Target = T>, T: ?Sized,
Deref::Target
of a value. Read moresource§fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere
Self: DerefMut<Target = T> + Deref,
T: ?Sized,
fn tap_deref_mut<T>(self, func: impl FnOnce(&mut T)) -> Selfwhere Self: DerefMut<Target = T> + Deref, T: ?Sized,
Deref::Target
of a value. Read moresource§fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
fn tap_dbg(self, func: impl FnOnce(&Self)) -> Self
.tap()
only in debug builds, and is erased in release builds.source§fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
fn tap_mut_dbg(self, func: impl FnOnce(&mut Self)) -> Self
.tap_mut()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere
Self: Borrow<B>,
B: ?Sized,
fn tap_borrow_dbg<B>(self, func: impl FnOnce(&B)) -> Selfwhere Self: Borrow<B>, B: ?Sized,
.tap_borrow()
only in debug builds, and is erased in release
builds.source§fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere
Self: BorrowMut<B>,
B: ?Sized,
fn tap_borrow_mut_dbg<B>(self, func: impl FnOnce(&mut B)) -> Selfwhere Self: BorrowMut<B>, B: ?Sized,
.tap_borrow_mut()
only in debug builds, and is erased in release
builds.source§fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere
Self: AsRef<R>,
R: ?Sized,
fn tap_ref_dbg<R>(self, func: impl FnOnce(&R)) -> Selfwhere Self: AsRef<R>, R: ?Sized,
.tap_ref()
only in debug builds, and is erased in release
builds.source§fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere
Self: AsMut<R>,
R: ?Sized,
fn tap_ref_mut_dbg<R>(self, func: impl FnOnce(&mut R)) -> Selfwhere Self: AsMut<R>, R: ?Sized,
.tap_ref_mut()
only in debug builds, and is erased in release
builds.