pub struct BlobContext<'a> {
pub table: Option<&'a str>,
pub column: Option<&'a str>,
}Expand description
The schema context a BlobInterpreter may use as a decoding prior — e.g. a
known table/column (“this column holds UTF-16 Local Storage values”) lifts a
structural, low-confidence reading to a high-confidence one.
Fields§
§table: Option<&'a str>The table the record was attributed to, when known.
column: Option<&'a str>The column the value came from, when known.
Trait Implementations§
Source§impl<'a> Clone for BlobContext<'a>
impl<'a> Clone for BlobContext<'a>
Source§fn clone(&self) -> BlobContext<'a>
fn clone(&self) -> BlobContext<'a>
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<'a> Copy for BlobContext<'a>
Source§impl<'a> Debug for BlobContext<'a>
impl<'a> Debug for BlobContext<'a>
Source§impl<'a> Default for BlobContext<'a>
impl<'a> Default for BlobContext<'a>
Source§fn default() -> BlobContext<'a>
fn default() -> BlobContext<'a>
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl<'a> Freeze for BlobContext<'a>
impl<'a> RefUnwindSafe for BlobContext<'a>
impl<'a> Send for BlobContext<'a>
impl<'a> Sync for BlobContext<'a>
impl<'a> Unpin for BlobContext<'a>
impl<'a> UnsafeUnpin for BlobContext<'a>
impl<'a> UnwindSafe for BlobContext<'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
Mutably borrows from an owned value. Read more