pub struct JobWriter<'a, 'n: 'a> { /* private fields */ }
Expand description
Writer for a job struct.
Created by JobsWriter::add_job
.
Implementations§
Methods from Deref<Target = Struct<'a, 'n>>§
sourcepub fn element(
&mut self,
name: &'a str,
namespace: Namespace<'n>,
) -> Element<'_, 'n>
pub fn element( &mut self, name: &'a str, namespace: Namespace<'n>, ) -> Element<'_, 'n>
Start writing a property in the struct.
sourcepub fn element_with_attrs<'b>(
&mut self,
name: &'a str,
namespace: Namespace<'n>,
attrs: impl IntoIterator<Item = (&'b str, &'b str)>,
) -> Element<'_, 'n>
pub fn element_with_attrs<'b>( &mut self, name: &'a str, namespace: Namespace<'n>, attrs: impl IntoIterator<Item = (&'b str, &'b str)>, ) -> Element<'_, 'n>
Start writing a property with attributes in the struct.
Trait Implementations§
Auto Trait Implementations§
impl<'a, 'n> Freeze for JobWriter<'a, 'n>
impl<'a, 'n> RefUnwindSafe for JobWriter<'a, 'n>
impl<'a, 'n> Send for JobWriter<'a, 'n>
impl<'a, 'n> Sync for JobWriter<'a, 'n>
impl<'a, 'n> Unpin for JobWriter<'a, 'n>
impl<'a, 'n> !UnwindSafe for JobWriter<'a, 'n>
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