Struct gfx_core::handle::RenderTargetView
[−]
[src]
pub struct RenderTargetView<R: Resources, T>(_, _);
Typed RTV
Methods
impl<R: Resources, T> RenderTargetView<R, T>[src]
pub fn get_dimensions(&self) -> Dimensions[src]
Get target dimensions
Trait Implementations
impl<R: Clone + Resources, T: Clone> Clone for RenderTargetView<R, T>[src]
fn clone(&self) -> RenderTargetView<R, T>[src]
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<R: Debug + Resources, T: Debug> Debug for RenderTargetView<R, T>[src]
fn fmt(&self, __arg_0: &mut Formatter) -> Result[src]
Formats the value using the given formatter. Read more
impl<R: Eq + Resources, T: Eq> Eq for RenderTargetView<R, T>[src]
impl<R: Hash + Resources, T: Hash> Hash for RenderTargetView<R, T>[src]
fn hash<__HRT: Hasher>(&self, __arg_0: &mut __HRT)[src]
Feeds this value into the given [Hasher]. Read more
fn hash_slice<H>(data: &[Self], state: &mut H) where
H: Hasher, 1.3.0[src]
H: Hasher,
Feeds a slice of this type into the given [Hasher]. Read more
impl<R: PartialEq + Resources, T: PartialEq> PartialEq for RenderTargetView<R, T>[src]
fn eq(&self, __arg_0: &RenderTargetView<R, T>) -> bool[src]
This method tests for self and other values to be equal, and is used by ==. Read more
fn ne(&self, __arg_0: &RenderTargetView<R, T>) -> bool[src]
This method tests for !=.
impl<R: Resources, T> Typed for RenderTargetView<R, T>[src]
type Raw = RawRenderTargetView<R>
The raw type behind the phantom.
fn new(h: RawRenderTargetView<R>) -> RenderTargetView<R, T>[src]
Crete a new phantom from the raw type.
fn raw(&self) -> &RawRenderTargetView<R>[src]
Get an internal reference to the raw type.