[][src]Struct etebase::Item

pub struct Item { /* fields omitted */ }

Items belong to collections and are where data is stored

Items have two pieces of data associated with them:

  • metadata - contains meta information like name and modification time
  • Content - a buffer containing arbitrary binary data.

Implementations

impl Item[src]

pub fn verify(&self) -> Result<bool>[src]

Manually verify the integrity of the item

This is usually done automatically by the API

pub fn set_meta<T: MsgPackSerilization>(&mut self, meta: &T) -> Result<()>[src]

Set metadata for the item object

Arguments:

pub fn meta(&self) -> Result<ItemMetadata>[src]

Return the ItemMetadata of the item

pub fn meta_generic<T: MsgPackSerilization>(&self) -> Result<T::Output>[src]

Return the ItemMetadata of the collection deserializing using a generic metadata object

The metadata object needs to implement the MsgPackSerilization trait.

pub fn set_meta_raw(&mut self, meta: &[u8]) -> Result<()>[src]

Set metadata for the item object from a byte array

Arguments:

  • meta - the metadata for the item. This needs to be a valid ItemMetadata struct encoded using msgpack.

pub fn meta_raw(&self) -> Result<Vec<u8>>[src]

Return metadata for the item object as a byte array

pub fn set_content(&mut self, content: &[u8]) -> Result<()>[src]

Set the content of the item

Arguments:

  • content - the content of the item as a byte array

pub fn content(&self) -> Result<Vec<u8>>[src]

Return the content of the item as a byte array

pub fn delete(&mut self) -> Result<()>[src]

Mark the item as deleted

The item needs to be uploaded for this to take effect

pub fn is_deleted(&self) -> bool[src]

Check whether the item is marked as deleted

pub fn is_missing_content(&self) -> bool[src]

Check whether the item is missing content and should be downloaded

If it is, the content should be downloaded with ItemManager::download_content.

pub fn uid(&self) -> &str[src]

The UID of the item

pub fn etag(&self) -> &str[src]

The etag of the item

Trait Implementations

impl Clone for Item[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.