Struct vk_parse::SyncPipeline
source · #[non_exhaustive]pub struct SyncPipeline {
pub order: Option<String>,
pub before: Option<String>,
pub after: Option<String>,
pub text: String,
}Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. } syntax; cannot be matched against without a wildcard ..; and struct update syntax will not work.order: Option<String>§before: Option<String>§after: Option<String>§text: StringTrait Implementations§
source§impl Clone for SyncPipeline
impl Clone for SyncPipeline
source§fn clone(&self) -> SyncPipeline
fn clone(&self) -> SyncPipeline
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 Debug for SyncPipeline
impl Debug for SyncPipeline
source§impl Default for SyncPipeline
impl Default for SyncPipeline
source§fn default() -> SyncPipeline
fn default() -> SyncPipeline
Returns the “default value” for a type. Read more
source§impl PartialEq<SyncPipeline> for SyncPipeline
impl PartialEq<SyncPipeline> for SyncPipeline
source§fn eq(&self, other: &SyncPipeline) -> bool
fn eq(&self, other: &SyncPipeline) -> bool
This method tests for
self and other values to be equal, and is used
by ==.impl Eq for SyncPipeline
impl StructuralEq for SyncPipeline
impl StructuralPartialEq for SyncPipeline
Auto Trait Implementations§
impl RefUnwindSafe for SyncPipeline
impl Send for SyncPipeline
impl Sync for SyncPipeline
impl Unpin for SyncPipeline
impl UnwindSafe for SyncPipeline
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