Struct screen_13::graph::node::SwapchainImageNode
source · pub struct SwapchainImageNode { /* private fields */ }Expand description
Resource node.
Trait Implementations§
source§impl Bind<&mut RenderGraph, SwapchainImageNode> for SwapchainImage
impl Bind<&mut RenderGraph, SwapchainImageNode> for SwapchainImage
source§fn bind(self, graph: &mut RenderGraph) -> SwapchainImageNode
fn bind(self, graph: &mut RenderGraph) -> SwapchainImageNode
Binds the resource to a graph-like object. Read more
source§impl Clone for SwapchainImageNode
impl Clone for SwapchainImageNode
source§impl Debug for SwapchainImageNode
impl Debug for SwapchainImageNode
source§impl From<SwapchainImageNode> for AnyImageNode
impl From<SwapchainImageNode> for AnyImageNode
source§fn from(node: SwapchainImageNode) -> Self
fn from(node: SwapchainImageNode) -> Self
Converts to this type from the input type.
source§impl<'a> Index<SwapchainImageNode> for Bindings<'a>
impl<'a> Index<SwapchainImageNode> for Bindings<'a>
source§impl Node for SwapchainImageNode
impl Node for SwapchainImageNode
source§impl Unbind<Resolver, SwapchainImage> for SwapchainImageNode
impl Unbind<Resolver, SwapchainImage> for SwapchainImageNode
source§impl View for SwapchainImageNode
impl View for SwapchainImageNode
§type Information = ImageViewInfo
type Information = ImageViewInfo
The information about the resource interpretation.
§type Subresource = ImageSubresource
type Subresource = ImageSubresource
The portion of the resource which is bound.
impl Copy for SwapchainImageNode
Auto Trait Implementations§
impl RefUnwindSafe for SwapchainImageNode
impl Send for SwapchainImageNode
impl Sync for SwapchainImageNode
impl Unpin for SwapchainImageNode
impl UnwindSafe for SwapchainImageNode
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
§impl<T> Downcast for Twhere
T: Any,
impl<T> Downcast for Twhere
T: Any,
§fn into_any(self: Box<T>) -> Box<dyn Any>
fn into_any(self: Box<T>) -> Box<dyn Any>
Convert
Box<dyn Trait> (where Trait: Downcast) to Box<dyn Any>. Box<dyn Any> can
then be further downcast into Box<ConcreteType> where ConcreteType implements Trait.§fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
fn into_any_rc(self: Rc<T>) -> Rc<dyn Any>
Convert
Rc<Trait> (where Trait: Downcast) to Rc<Any>. Rc<Any> can then be
further downcast into Rc<ConcreteType> where ConcreteType implements Trait.§fn as_any(&self) -> &(dyn Any + 'static)
fn as_any(&self) -> &(dyn Any + 'static)
Convert
&Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &Any’s vtable from &Trait’s.§fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
fn as_any_mut(&mut self) -> &mut (dyn Any + 'static)
Convert
&mut Trait (where Trait: Downcast) to &Any. This is needed since Rust cannot
generate &mut Any’s vtable from &mut Trait’s.