pub struct File(/* private fields */);
Implementations§
Source§impl File
impl File
pub fn ingredient(db: &dyn Database) -> &IngredientImpl<Self>
pub fn ingredient_mut( db: &mut dyn Database, ) -> (&mut IngredientImpl<Self>, &mut Runtime)
Source§impl File
impl File
pub fn new<Db_>( db: &Db_, path: PathBuf, member_file: Option<String>, mtime: SystemTime, size: u64, ) -> Self
pub fn builder( path: PathBuf, member_file: Option<String>, mtime: SystemTime, size: u64, ) -> <Self as HasBuilder>::Builder
pub fn path<'db, Db_>(self, db: &'db Db_) -> &'db PathBuf
pub fn member_file<'db, Db_>(self, db: &'db Db_) -> &'db Option<String>
pub fn mtime<'db, Db_>(self, db: &'db Db_) -> SystemTime
pub fn size<'db, Db_>(self, db: &'db Db_) -> u64
pub fn set_path<'db, Db_>( self, db: &'db mut Db_, ) -> impl Setter<FieldTy = PathBuf> + use<'db, Db_>
pub fn set_member_file<'db, Db_>( self, db: &'db mut Db_, ) -> impl Setter<FieldTy = Option<String>> + use<'db, Db_>
pub fn set_mtime<'db, Db_>( self, db: &'db mut Db_, ) -> impl Setter<FieldTy = SystemTime> + use<'db, Db_>
pub fn set_size<'db, Db_>( self, db: &'db mut Db_, ) -> impl Setter<FieldTy = u64> + use<'db, Db_>
Sourcepub fn default_debug_fmt(this: Self, f: &mut Formatter<'_>) -> Result
pub fn default_debug_fmt(this: Self, f: &mut Formatter<'_>) -> Result
Default debug formatting for this struct (may be useful if you define your own Debug
impl)
Trait Implementations§
Source§impl Configuration for File
impl Configuration for File
const LOCATION: Location
const DEBUG_NAME: &'static str = "File"
const FIELD_DEBUG_NAMES: &'static [&'static str]
Source§type Fields = (PathBuf, Option<String>, SystemTime, u64)
type Fields = (PathBuf, Option<String>, SystemTime, u64)
A (possibly empty) tuple of the fields for this struct.
Source§type Durabilities = [Durability; 4]
type Durabilities = [Durability; 4]
A array of
Durability
, one per each of the value fields.impl Copy for File
impl Eq for File
impl StructuralPartialEq for File
Auto Trait Implementations§
impl Freeze for File
impl RefUnwindSafe for File
impl Send for File
impl Sync for File
impl Unpin for File
impl UnwindSafe for File
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.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