[][src]Struct ttyrec::Creator

pub struct Creator { /* fields omitted */ }

Creates ttyrec frames.

A ttyrec file is a stream of concatenated frames. This struct creates Frame objects, which can be serialized to bytes using their try_from implementation, and then a ttyrec file can be generated by concatenating those byte strings.

Methods

impl Creator[src]

pub fn new() -> Self[src]

Creates a new Creator instance.

pub fn frame(&mut self, data: &[u8]) -> Frame[src]

Returns a new Frame object containing the given data.

Equivalent to calling frame_at and passing std::time::Instant::now() as the cur_time parameter.

pub fn frame_at(&mut self, cur_time: Instant, data: &[u8]) -> Frame[src]

Returns a new Frame object containing the given data at the given time.

Note that this is not guaranteed to do the correct thing unless the cur_time parameters given in each frame_at call are non-decreasing.

Trait Implementations

impl Clone for Creator[src]

impl Default for Creator[src]

impl Debug for Creator[src]

Auto Trait Implementations

impl Send for Creator

impl Sync for Creator

impl Unpin for Creator

impl UnwindSafe for Creator

impl RefUnwindSafe for Creator

Blanket Implementations

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

impl<T> From<T> for 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.

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

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

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