pub struct FilesWrite<'a> {
pub path: &'a str,
pub create: Option<bool>,
pub truncate: Option<bool>,
pub parents: Option<bool>,
pub offset: Option<i64>,
pub count: Option<i64>,
pub raw_leaves: Option<bool>,
pub hash: Option<&'a str>,
pub cid_version: Option<i32>,
pub flush: Option<bool>,
}Available on crate feature
ipfs and non-target_os="solana" only.Fields§
§path: &'a str§create: Option<bool>§truncate: Option<bool>§parents: Option<bool>§offset: Option<i64>§count: Option<i64>§raw_leaves: Option<bool>§hash: Option<&'a str>§cid_version: Option<i32>§flush: Option<bool>Implementations§
Source§impl<'a> FilesWrite<'a>
impl<'a> FilesWrite<'a>
Sourcepub fn builder() -> FilesWriteBuilder<'a, ((), (), (), (), (), (), (), (), (), ())>
pub fn builder() -> FilesWriteBuilder<'a, ((), (), (), (), (), (), (), (), (), ())>
Create a builder for building FilesWrite.
On the builder, call .path(...), .create(...)(optional), .truncate(...)(optional), .parents(...)(optional), .offset(...)(optional), .count(...)(optional), .raw_leaves(...)(optional), .hash(...)(optional), .cid_version(...)(optional), .flush(...)(optional) to set the values of the fields.
Finally, call .build() to create the instance of FilesWrite.
Trait Implementations§
Source§impl<'a> ApiRequest for FilesWrite<'a>
impl<'a> ApiRequest for FilesWrite<'a>
Source§impl<'a> Default for FilesWrite<'a>
impl<'a> Default for FilesWrite<'a>
Source§fn default() -> FilesWrite<'a>
fn default() -> FilesWrite<'a>
Returns the “default value” for a type. Read more
Source§impl<'a> Serialize for FilesWrite<'a>
impl<'a> Serialize for FilesWrite<'a>
Source§fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
fn serialize<__S>(
&self,
__serializer: __S,
) -> Result<<__S as Serializer>::Ok, <__S as Serializer>::Error>where
__S: Serializer,
Serialize this value into the given Serde serializer. Read more
Auto Trait Implementations§
impl<'a> Freeze for FilesWrite<'a>
impl<'a> RefUnwindSafe for FilesWrite<'a>
impl<'a> Send for FilesWrite<'a>
impl<'a> Sync for FilesWrite<'a>
impl<'a> Unpin for FilesWrite<'a>
impl<'a> UnwindSafe for FilesWrite<'a>
Blanket Implementations§
Source§impl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, _digester: &mut AbiDigester, ) -> Result<AbiDigester, DigestError>
Source§impl<T> AbiEnumVisitor for T
impl<T> AbiEnumVisitor for T
default fn visit_for_abi( &self, digester: &mut AbiDigester, ) -> Result<AbiDigester, DigestError>
Source§impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedExplicit<'a, E> for Twhere
T: 'a,
Source§impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
impl<'a, T, E> AsTaggedImplicit<'a, E> for Twhere
T: 'a,
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> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
fn instrument(self, span: Span) -> Instrumented<Self> ⓘ
Source§fn in_current_span(self) -> Instrumented<Self> ⓘ
fn in_current_span(self) -> Instrumented<Self> ⓘ
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