GlobalResourceManager

Struct GlobalResourceManager 

Source
pub struct GlobalResourceManager {
    pub resource_table: ResourceTable,
    pub gotham_state: GothamState,
}
Expand description

全局资源管理器 用于管理编辑器运行时的全局资源和状态

  • resource_table: 资源表,管理所有注册的资源
  • gotham_state: Gotham状态,管理特定于Gotham框架的状态

Fields§

§resource_table: ResourceTable§gotham_state: GothamState

Implementations§

Source§

impl GlobalResourceManager

Source

pub fn new() -> GlobalResourceManager

创建新的全局资源管理器实例

Source

pub fn clear(&mut self)

清理所有资源 使用std::mem::take来安全地获取并重置内部状态

Methods from Deref<Target = GothamState>§

Source

pub fn put<T>(&self, t: T)
where T: Clone + Send + Sync + 'static,

将数据存入状态容器中

§参数
  • t - 要存储的数据,必须是’static生命周期
Source

pub fn has<T>(&self) -> bool
where T: Send + Sync + 'static,

检查状态容器中是否包含指定类型的数据

§参数
  • 泛型参数T - 要检查的类型
§返回值
  • 如果存在返回true,否则返回false
Source

pub fn get<T>(&self) -> Option<Arc<T>>
where T: Clone + Send + Sync + 'static,

Source

pub fn try_get<T>(&self) -> Option<Arc<T>>
where T: Clone + Send + Sync + 'static,

Source

pub fn try_take<T>(&self) -> Option<Arc<T>>
where T: Send + Sync + 'static,

Source

pub fn take<T>(&mut self) -> Option<Arc<T>>
where T: Send + Sync + 'static,

从状态容器中移除并返回指定类型的数据

§参数
  • 泛型参数T - 要移除的类型
§返回值
  • 返回T,如果数据不存在则返回None

Trait Implementations§

Source§

impl Debug for GlobalResourceManager

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result<(), Error>

Formats the value using the given formatter. Read more
Source§

impl Default for GlobalResourceManager

Source§

fn default() -> GlobalResourceManager

Returns the “default value” for a type. Read more
Source§

impl Deref for GlobalResourceManager

Source§

type Target = GothamState

The resulting type after dereferencing.
Source§

fn deref(&self) -> &<GlobalResourceManager as Deref>::Target

Dereferences the value.
Source§

impl DerefMut for GlobalResourceManager

Source§

fn deref_mut(&mut self) -> &mut <GlobalResourceManager as Deref>::Target

Mutably dereferences the value.

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T> Instrument for T

Source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
Source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> IntoEither for T

Source§

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 more
Source§

fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
where F: FnOnce(&Self) -> bool,

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
Source§

impl<T> Pointable for T

Source§

const ALIGN: usize

The alignment of pointer.
Source§

type Init = T

The type for initializers.
Source§

unsafe fn init(init: <T as Pointable>::Init) -> usize

Initializes a with the given initializer. Read more
Source§

unsafe fn deref<'a>(ptr: usize) -> &'a T

Dereferences the given pointer. Read more
Source§

unsafe fn deref_mut<'a>(ptr: usize) -> &'a mut T

Mutably dereferences the given pointer. Read more
Source§

unsafe fn drop(ptr: usize)

Drops the object pointed to by the given pointer. Read more
Source§

impl<P, T> Receiver for P
where P: Deref<Target = T> + ?Sized, T: ?Sized,

Source§

type Target = T

🔬This is a nightly-only experimental API. (arbitrary_self_types)
The target type on which the method may be called.
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

impl<T> WithSubscriber for T

Source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
Source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more