pub struct FLV {
pub header: Header,
pub body: Body,
}Fields§
§header: Header§body: BodyImplementations§
Source§impl FLV
impl FLV
pub fn open(file_path: &str) -> Result<FLV, FLVError>
pub fn open_with_reader<R: Read + Seek>(reader: &mut R) -> Result<FLV, FLVError>
pub fn write_file(&mut self, file_path: &str) -> Result<u8, FLVError>
pub fn write<F: Write + Seek>(&mut self, f: &mut F) -> Result<u8, FLVError>
Trait Implementations§
Auto Trait Implementations§
impl Freeze for FLV
impl RefUnwindSafe for FLV
impl Send for FLV
impl Sync for FLV
impl Unpin for FLV
impl UnwindSafe for FLV
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more