pub trait HasBufferObj: HasData + Bindable {
    fn as_any(&self) -> &dyn Any;
    fn as_any_mut(&mut self) -> &mut dyn Any;
    fn info(&self) -> &BufferInfo;
    fn update(&self);
}

Required Methods

Trait Implementations

Converts to this type from the input type.

Implementors