[][src]Struct t_rust_less_lib::api_capnp::event::Builder

pub struct Builder<'a> { /* fields omitted */ }

Implementations

impl<'a> Builder<'a>[src]

pub fn into_reader(self) -> Reader<'a>[src]

pub fn reborrow(&mut self) -> Builder<'_>[src]

pub fn reborrow_as_reader(&self) -> Reader<'_>[src]

pub fn total_size(&self) -> Result<MessageSize>[src]

pub fn get_type(self) -> Result<EventType, NotInSchema>[src]

pub fn set_type(&mut self, value: EventType)[src]

pub fn get_store_name(self) -> Result<Builder<'a>>[src]

pub fn set_store_name(&mut self, value: Reader<'_>)[src]

pub fn init_store_name(self, size: u32) -> Builder<'a>[src]

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

pub fn get_identity(self) -> Result<Builder<'a>>[src]

pub fn set_identity<'b>(&mut self, value: Reader<'b>) -> Result<()>[src]

pub fn init_identity(self) -> Builder<'a>[src]

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

pub fn get_secret_id(self) -> Result<Builder<'a>>[src]

pub fn set_secret_id(&mut self, value: Reader<'_>)[src]

pub fn init_secret_id(self, size: u32) -> Builder<'a>[src]

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

pub fn get_property(self) -> Result<Builder<'a>>[src]

pub fn set_property(&mut self, value: Reader<'_>)[src]

pub fn init_property(self, size: u32) -> Builder<'a>[src]

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

pub fn get_block_id(self) -> Result<Builder<'a>>[src]

pub fn set_block_id(&mut self, value: Reader<'_>)[src]

pub fn init_block_id(self, size: u32) -> Builder<'a>[src]

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

Trait Implementations

impl<'a> FromPointerBuilder<'a> for Builder<'a>[src]

impl<'a> FromStructBuilder<'a> for Builder<'a>[src]

impl<'a> HasStructSize for Builder<'a>[src]

impl<'a> HasTypeId for Builder<'a>[src]

impl<'a> ImbueMut<'a> for Builder<'a>[src]

impl<'a> SetPointerBuilder<Builder<'a>> for Reader<'a>[src]

Auto Trait Implementations

impl<'a> !RefUnwindSafe for Builder<'a>

impl<'a> !Send for Builder<'a>

impl<'a> !Sync for Builder<'a>

impl<'a> Unpin for Builder<'a>

impl<'a> !UnwindSafe for Builder<'a>

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> Same<T> for T

type Output = T

Should always be Self

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.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>,