Struct spin_app::values::ValuesMapBuilder
source · pub struct ValuesMapBuilder(_);
Expand description
ValuesMapBuilder assists in building a ValuesMap.
Implementations§
source§impl ValuesMapBuilder
impl ValuesMapBuilder
sourcepub fn string(
&mut self,
key: impl Into<String>,
value: impl Into<String>
) -> &mut Self
pub fn string(
&mut self,
key: impl Into<String>,
value: impl Into<String>
) -> &mut Self
Inserts a string value into the map.
sourcepub fn string_option(
&mut self,
key: impl Into<String>,
value: Option<impl Into<String>>
) -> &mut Self
pub fn string_option(
&mut self,
key: impl Into<String>,
value: Option<impl Into<String>>
) -> &mut Self
Inserts a string value into the map only if the given Option is Some.
sourcepub fn string_array<T: Into<String>>(
&mut self,
key: impl Into<String>,
iter: impl IntoIterator<Item = T>
) -> &mut Self
pub fn string_array<T: Into<String>>(
&mut self,
key: impl Into<String>,
iter: impl IntoIterator<Item = T>
) -> &mut Self
Inserts a string array into the map.
sourcepub fn entry(
&mut self,
key: impl Into<String>,
value: impl Into<Value>
) -> &mut Self
pub fn entry(
&mut self,
key: impl Into<String>,
value: impl Into<Value>
) -> &mut Self
Inserts an entry into the map using the value’s impl Into<Value>
.
Trait Implementations§
source§impl Default for ValuesMapBuilder
impl Default for ValuesMapBuilder
source§fn default() -> ValuesMapBuilder
fn default() -> ValuesMapBuilder
Returns the “default value” for a type. Read more
Auto Trait Implementations§
impl RefUnwindSafe for ValuesMapBuilder
impl Send for ValuesMapBuilder
impl Sync for ValuesMapBuilder
impl Unpin for ValuesMapBuilder
impl UnwindSafe for ValuesMapBuilder
Blanket Implementations§
§impl<T> GetSetFdFlags for T
impl<T> GetSetFdFlags for T
§fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
fn get_fd_flags(&self) -> Result<FdFlags, Error>where
T: AsFilelike,
Query the “status” flags for the
self
file descriptor.