[][src]Struct cpclib_disc::edsk::Sector

pub struct Sector { /* fields omitted */ }

Methods

impl Sector[src]

pub fn real_size(&self) -> u16[src]

Number of bytes stored in the sector

pub fn len(&self) -> u16[src]

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

pub fn data_sum(&self) -> usize[src]

pub fn values(&self) -> &[u8][src]

pub fn values_mut(&mut self) -> &mut [u8][src]

pub fn set_values(&mut self, data: &[u8]) -> Result<(), String>[src]

Set all the values stored in the sector

pub fn sector_id(&self) -> &u8[src]

Trait Implementations

impl Clone for Sector[src]

impl Debug for Sector[src]

impl Default for Sector[src]

impl PartialEq<Sector> for Sector[src]

impl StructuralPartialEq for Sector[src]

Auto Trait Implementations

impl RefUnwindSafe for Sector

impl Send for Sector

impl Sync for Sector

impl Unpin for Sector

impl UnwindSafe for Sector

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> 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.