pub struct SourceRootInput(/* private fields */);
Implementations§
Source§impl SourceRootInput
impl SourceRootInput
pub fn ingredient(db: &dyn Database) -> &IngredientImpl<Self>
pub fn ingredient_mut( db: &mut dyn Database, ) -> (&mut IngredientImpl<Self>, &mut Runtime)
Source§impl SourceRootInput
impl SourceRootInput
pub fn new<Db_>(db: &Db_, source_root: Arc<SourceRoot>) -> Selfwhere
Db_: ?Sized + Database,
pub fn builder(source_root: Arc<SourceRoot>) -> <Self as HasBuilder>::Builder
pub fn source_root<'db, Db_>(self, db: &'db Db_) -> Arc<SourceRoot>where
Db_: ?Sized + Database,
pub fn set_source_root<'db, Db_>(
self,
db: &'db mut Db_,
) -> impl Setter<FieldTy = Arc<SourceRoot>> + '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 Clone for SourceRootInput
impl Clone for SourceRootInput
Source§fn clone(&self) -> SourceRootInput
fn clone(&self) -> SourceRootInput
Returns a copy of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Configuration for SourceRootInput
impl Configuration for SourceRootInput
Source§type Struct = SourceRootInput
type Struct = SourceRootInput
The input struct (which wraps an Id
)
Source§type Fields = (Arc<SourceRoot>,)
type Fields = (Arc<SourceRoot>,)
A (possibly empty) tuple of the fields for this struct.
Source§type Stamps = Array<StampedValue<()>, 1>
type Stamps = Array<StampedValue<()>, 1>
A array of StampedValue<()>
tuples, one per each of the value fields.
const DEBUG_NAME: &'static str = "SourceRootInput"
const FIELD_DEBUG_NAMES: &'static [&'static str]
Source§impl Debug for SourceRootInput
impl Debug for SourceRootInput
Source§impl Hash for SourceRootInput
impl Hash for SourceRootInput
Source§impl Ord for SourceRootInput
impl Ord for SourceRootInput
Source§fn cmp(&self, other: &SourceRootInput) -> Ordering
fn cmp(&self, other: &SourceRootInput) -> Ordering
1.21.0 · Source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
Compares and returns the maximum of two values. Read more
Source§impl PartialEq for SourceRootInput
impl PartialEq for SourceRootInput
Source§impl PartialOrd for SourceRootInput
impl PartialOrd for SourceRootInput
Source§impl SalsaStructInDb for SourceRootInput
impl SalsaStructInDb for SourceRootInput
Source§impl Update for SourceRootInput
impl Update for SourceRootInput
impl Copy for SourceRootInput
impl Eq for SourceRootInput
impl StructuralPartialEq for SourceRootInput
Auto Trait Implementations§
impl Freeze for SourceRootInput
impl RefUnwindSafe for SourceRootInput
impl Send for SourceRootInput
impl Sync for SourceRootInput
impl Unpin for SourceRootInput
impl UnwindSafe for SourceRootInput
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