pub struct FileText(/* private fields */);
Implementations§
Source§impl FileText
impl FileText
pub fn ingredient(db: &dyn Database) -> &IngredientImpl<Self>
pub fn ingredient_mut( db: &mut dyn Database, ) -> (&mut IngredientImpl<Self>, &mut Runtime)
Source§impl FileText
impl FileText
pub fn new<Db_>(db: &Db_, text: Arc<str>, file_id: FileId) -> Selfwhere
Db_: ?Sized + Database,
pub fn builder(text: Arc<str>, file_id: FileId) -> <Self as HasBuilder>::Builder
pub fn text<'db, Db_>(self, db: &'db Db_) -> Arc<str>where
Db_: ?Sized + Database,
pub fn file_id<'db, Db_>(self, db: &'db Db_) -> FileIdwhere
Db_: ?Sized + Database,
pub fn set_text<'db, Db_>(
self,
db: &'db mut Db_,
) -> impl Setter<FieldTy = Arc<str>> + 'dbwhere
Db_: ?Sized + Database,
pub fn set_file_id<'db, Db_>(
self,
db: &'db mut Db_,
) -> impl Setter<FieldTy = FileId> + 'dbwhere
Db_: ?Sized + Database,
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 FileText
impl Configuration for FileText
Source§type Stamps = Array<StampedValue<()>, 2>
type Stamps = Array<StampedValue<()>, 2>
A array of StampedValue<()>
tuples, one per each of the value fields.
const DEBUG_NAME: &'static str = "FileText"
const FIELD_DEBUG_NAMES: &'static [&'static str]
Source§impl Ord for FileText
impl Ord for FileText
Source§impl PartialOrd for FileText
impl PartialOrd for FileText
impl Copy for FileText
impl Eq for FileText
impl StructuralPartialEq for FileText
Auto Trait Implementations§
impl Freeze for FileText
impl RefUnwindSafe for FileText
impl Send for FileText
impl Sync for FileText
impl Unpin for FileText
impl UnwindSafe for FileText
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,
§impl<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Checks if this value is equivalent to the given key. Read more
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key
and return true
if they are equal.§impl<T> HashEqLike<T> for T
impl<T> HashEqLike<T> for T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§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