[][src]Trait cl_traits::Truncate

pub trait Truncate {
    type TruncateInput;
    type TruncateRet;
    fn truncate(&mut self, input: Self::TruncateInput) -> Self::TruncateRet;
}

Has some way to truncate some sort of storage.

Associated Types

type TruncateInput

Input type for the truncate` method.

type TruncateRet

Return type for the truncate` method.

Loading content...

Required methods

fn truncate(&mut self, input: Self::TruncateInput) -> Self::TruncateRet

Truncates the storage.

Loading content...

Implementors

Loading content...