pub struct ParamBuilder {
pub param_str: String,
}
Expand description
StudentVUE parameter builder
Fields§
§param_str: String
Implementations§
Source§impl ParamBuilder
impl ParamBuilder
Sourcepub fn add_elements(&mut self, params: &[ParamType<'_>]) -> Result<Self, Error>
pub fn add_elements(&mut self, params: &[ParamType<'_>]) -> Result<Self, Error>
Adds several elements to the Parms
node
Sourcepub fn build_string(&self) -> String
pub fn build_string(&self) -> String
Creates a xml string based on the attained attribute strings
Trait Implementations§
Source§impl Clone for ParamBuilder
impl Clone for ParamBuilder
Source§fn clone(&self) -> ParamBuilder
fn clone(&self) -> ParamBuilder
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 moreAuto Trait Implementations§
impl Freeze for ParamBuilder
impl RefUnwindSafe for ParamBuilder
impl Send for ParamBuilder
impl Sync for ParamBuilder
impl Unpin for ParamBuilder
impl UnwindSafe for ParamBuilder
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