pub struct IdentifierView<'a> {
pub catalog: &'a str,
pub schema: &'a str,
pub name: &'a str,
pub __buffa_unknown_fields: UnknownFieldsView<'a>,
}Fields§
§catalog: &'a strField 1: catalog
schema: &'a strField 2: schema
name: &'a strField 3: name
__buffa_unknown_fields: UnknownFieldsView<'a>Trait Implementations§
Source§impl<'a> Clone for IdentifierView<'a>
impl<'a> Clone for IdentifierView<'a>
Source§fn clone(&self) -> IdentifierView<'a>
fn clone(&self) -> IdentifierView<'a>
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl<'a> Debug for IdentifierView<'a>
impl<'a> Debug for IdentifierView<'a>
Source§impl<'a> Default for IdentifierView<'a>
impl<'a> Default for IdentifierView<'a>
Source§fn default() -> IdentifierView<'a>
fn default() -> IdentifierView<'a>
Returns the “default value” for a type. Read more
Source§impl DefaultViewInstance for IdentifierView<'static>
impl DefaultViewInstance for IdentifierView<'static>
Source§fn default_view_instance() -> &'static Self
fn default_view_instance() -> &'static Self
Return a reference to the single default view instance.
Source§impl<'a> HasDefaultViewInstance for IdentifierView<'a>
impl<'a> HasDefaultViewInstance for IdentifierView<'a>
Source§type Static = IdentifierView<'static>
type Static = IdentifierView<'static>
The
'static instantiation of this view type.Source§fn default_view_ptr() -> *const u8
fn default_view_ptr() -> *const u8
Return a pointer to the static default instance, erasing the
lifetime so it can be used for any
'a.Source§impl<'a> MessageView<'a> for IdentifierView<'a>
impl<'a> MessageView<'a> for IdentifierView<'a>
Source§fn to_owned_message(&self) -> Identifier
fn to_owned_message(&self) -> Identifier
Convert this view to the owned message type.
Source§type Owned = Identifier
type Owned = Identifier
The corresponding owned message type.
Source§fn decode_view(buf: &'a [u8]) -> Result<Self, DecodeError>
fn decode_view(buf: &'a [u8]) -> Result<Self, DecodeError>
Decode a view from a buffer, borrowing string/bytes fields directly. Read more
Source§fn decode_view_with_limit(
buf: &'a [u8],
depth: u32,
) -> Result<Self, DecodeError>
fn decode_view_with_limit( buf: &'a [u8], depth: u32, ) -> Result<Self, DecodeError>
Decode a view with a custom recursion depth limit. Read more
Auto Trait Implementations§
impl<'a> Freeze for IdentifierView<'a>
impl<'a> RefUnwindSafe for IdentifierView<'a>
impl<'a> Send for IdentifierView<'a>
impl<'a> Sync for IdentifierView<'a>
impl<'a> Unpin for IdentifierView<'a>
impl<'a> UnsafeUnpin for IdentifierView<'a>
impl<'a> UnwindSafe for IdentifierView<'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