Skip to main content

Attachment

Struct Attachment 

Source
pub struct Attachment<'a> {
    pub kind: [u8; 8],
    pub id: u64,
    pub flags: u32,
    pub header_bytes: u32,
    pub bytes: &'a [u8],
}
Expand description

One section to be written into a file, handed to crate::attach.

The payload is bytes and the format keeps it that way. Which of the three key map forms is in flags, and what the first header_bytes bytes mean, are questions rudb-graph answers and this crate never asks, which is what makes the first of section 3.2’s three rules true rather than intended: a mechanism that had to understand a payload could not carry one it had never heard of.

Fields§

§kind: [u8; 8]

Which kind of structure this is, usually one of KEY_MAP, FORWARD_LINK, ADJACENCY.

§id: u64

Which structure of that kind. An attachment replaces any section already in the table with the same kind and id, which is what makes rebuilding a key map a write rather than a question about what to do with the old one.

§flags: u32

Kind-specific flags, copied into the entry and not interpreted.

§header_bytes: u32

How many bytes at the front of bytes are the kind’s own header.

§bytes: &'a [u8]

The payload. Empty is legal and is how section 3.7 records a relationship that did not fit the budget: an entry with no extents, its size reported by rudb_links(), and nothing in the file to read.

Trait Implementations§

Source§

impl<'a> Clone for Attachment<'a>

Source§

fn clone(&self) -> Self

Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl<'a> Copy for Attachment<'a>

Source§

impl<'a> Debug for Attachment<'a>

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more

Auto Trait Implementations§

§

impl<'a> Freeze for Attachment<'a>

§

impl<'a> RefUnwindSafe for Attachment<'a>

§

impl<'a> Send for Attachment<'a>

§

impl<'a> Sync for Attachment<'a>

§

impl<'a> Unpin for Attachment<'a>

§

impl<'a> UnsafeUnpin for Attachment<'a>

§

impl<'a> UnwindSafe for Attachment<'a>

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = !

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, !>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.