Enum BpsvFieldType

Source
pub enum BpsvFieldType {
    String(u32),
    Hex(u32),
    Decimal(u32),
}
Expand description

Represents a BPSV field type with its length specification

Variants§

§

String(u32)

String field with maximum length (0 = unlimited)

§

Hex(u32)

Hexadecimal field with byte count (N bytes = N*2 hex characters)

§

Decimal(u32)

Decimal number field with storage size in bytes (e.g., 4 = uint32)

Implementations§

Source§

impl BpsvFieldType

Source

pub fn parse(type_spec: &str) -> Result<Self>

Parse a field type from a string like “STRING:0”, “HEX:16”, “DEC:4”

Parsing is case-insensitive for the type name.

§Examples
use ngdp_bpsv::BpsvFieldType;

assert_eq!(BpsvFieldType::parse("STRING:0")?, BpsvFieldType::String(0));
assert_eq!(BpsvFieldType::parse("string:0")?, BpsvFieldType::String(0));
assert_eq!(BpsvFieldType::parse("String:0")?, BpsvFieldType::String(0));
assert_eq!(BpsvFieldType::parse("HEX:16")?, BpsvFieldType::Hex(16));
assert_eq!(BpsvFieldType::parse("hex:16")?, BpsvFieldType::Hex(16));
assert_eq!(BpsvFieldType::parse("DEC:4")?, BpsvFieldType::Decimal(4));
assert_eq!(BpsvFieldType::parse("dec:4")?, BpsvFieldType::Decimal(4));
Source

pub fn type_name(&self) -> &'static str

Get the type name (uppercase)

Source

pub fn length(&self) -> u32

Get the length specification

Source

pub fn is_valid_value(&self, value: &str) -> bool

Check if a string value is valid for this field type

§Examples
use ngdp_bpsv::BpsvFieldType;

let string_type = BpsvFieldType::String(5);
assert!(string_type.is_valid_value("hello"));
assert!(!string_type.is_valid_value("too_long")); // > 5 chars

let hex_type = BpsvFieldType::Hex(4);  // 4 bytes = 8 hex chars
assert!(hex_type.is_valid_value("abcd1234"));
assert!(hex_type.is_valid_value("12345678"));
assert!(!hex_type.is_valid_value("xyz")); // invalid hex
assert!(!hex_type.is_valid_value("1234")); // wrong length (need 8 chars)

let dec_type = BpsvFieldType::Decimal(4);
assert!(dec_type.is_valid_value("1234"));
assert!(dec_type.is_valid_value("0"));
assert!(!dec_type.is_valid_value("abc")); // not a number
Source

pub fn validate_value(&self, value: &str) -> Result<String>

Validate and potentially normalize a value for this field type

Returns the normalized value or an error if invalid.

Trait Implementations§

Source§

impl Clone for BpsvFieldType

Source§

fn clone(&self) -> BpsvFieldType

Returns a duplicate of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for BpsvFieldType

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Display for BpsvFieldType

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl Hash for BpsvFieldType

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl PartialEq for BpsvFieldType

Source§

fn eq(&self, other: &BpsvFieldType) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl Eq for BpsvFieldType

Source§

impl StructuralPartialEq for BpsvFieldType

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<Q, K> Equivalent<K> for Q
where Q: Eq + ?Sized, K: Borrow<Q> + ?Sized,

Source§

fn equivalent(&self, key: &K) -> bool

Checks if this value is equivalent to the given key. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
Source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
Source§

impl<T> ToString for T
where T: Display + ?Sized,

Source§

fn to_string(&self) -> String

Converts the given value to a String. Read more
Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.