You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// Trait that's implemented for user-defined classes that provide a `Base<T>` field.
211
+
/// Trait that is automatically implemented for user classes containing a `Base<T>` field.
211
212
///
212
-
/// Gives direct access to the containing `Gd<Self>` from `Self`.
213
+
/// Gives direct access to the containing `Gd<Self>` from `self`.
213
214
///
214
-
/// # Using WithBaseField as a bound
215
+
/// # Usage as a bound
215
216
///
216
-
/// In order to call `self.base()` or `self.base_mut()` within a trait or on a type you define, the type of `Self::Base` must be specified via `WithBaseField<Base = T>`
217
-
///
218
-
/// E.g.
217
+
/// In order to call `base()` or `base_mut()` within a function or on a type you define, you need a `WithBaseField<Base = T>` bound,
0 commit comments