pub struct StringOrU32(pub u32);Expand description
A value that can be either a u32 or a string parsed as octal/decimal.
Used by NfpmConfig.umask (and any future field that GoReleaser specifies
as int OR string in YAML — the parser canonicalizes both forms to a
u32). Accepts: 0o022, "0o022", "022", "18", 18. Bare numeric
YAML values are interpreted as decimal; YAML-string forms accept the
0o/0O prefix to spell octal explicitly.
Tuple Fields§
§0: u32Implementations§
Trait Implementations§
Source§impl Clone for StringOrU32
impl Clone for StringOrU32
Source§fn clone(&self) -> StringOrU32
fn clone(&self) -> StringOrU32
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 StringOrU32
impl Debug for StringOrU32
Source§impl Default for StringOrU32
impl Default for StringOrU32
Source§fn default() -> StringOrU32
fn default() -> StringOrU32
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StringOrU32
impl<'de> Deserialize<'de> for StringOrU32
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl JsonSchema for StringOrU32
impl JsonSchema for StringOrU32
Source§fn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref keyword. Read moreSource§fn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
Source§fn schema_id() -> Cow<'static, str>
fn schema_id() -> Cow<'static, str>
Returns a string that uniquely identifies the schema produced by this type. Read more
Source§fn json_schema(generator: &mut SchemaGenerator) -> Schema
fn json_schema(generator: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
Source§impl PartialEq for StringOrU32
impl PartialEq for StringOrU32
Source§fn eq(&self, other: &StringOrU32) -> bool
fn eq(&self, other: &StringOrU32) -> bool
Tests for
self and other values to be equal, and is used by ==.Source§impl Serialize for StringOrU32
impl Serialize for StringOrU32
impl Copy for StringOrU32
impl Eq for StringOrU32
impl StructuralPartialEq for StringOrU32
Auto Trait Implementations§
impl Freeze for StringOrU32
impl RefUnwindSafe for StringOrU32
impl Send for StringOrU32
impl Sync for StringOrU32
impl Unpin for StringOrU32
impl UnsafeUnpin for StringOrU32
impl UnwindSafe for StringOrU32
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
Source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
Compare self to
key and return true if they are equal.