pub struct WriterInit {
pub width: u64,
pub height: u64,
pub viewpoint: ViewPoint,
pub data_kind: DataKind,
pub schema: Option<Schema>,
pub version: Option<String>,
}Expand description
A builder type that builds Writer.
Fields§
§width: u64§height: u64§viewpoint: ViewPoint§data_kind: DataKind§schema: Option<Schema>§version: Option<String>PCD version to write (defaults to “0.7”)
Implementations§
Source§impl WriterInit
impl WriterInit
Sourcepub fn build_from_writer<Record: PcdSerialize, W: Write + Seek>(
self,
writer: W,
) -> Result<Writer<Record, W>, Error>
pub fn build_from_writer<Record: PcdSerialize, W: Write + Seek>( self, writer: W, ) -> Result<Writer<Record, W>, Error>
Auto Trait Implementations§
impl Freeze for WriterInit
impl RefUnwindSafe for WriterInit
impl Send for WriterInit
impl Sync for WriterInit
impl Unpin for WriterInit
impl UnsafeUnpin for WriterInit
impl UnwindSafe for WriterInit
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
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more