azure_core 0.20.0

Rust wrappers around Microsoft Azure REST APIs - Core crate
Documentation
use crate::headers::{self, Header};

#[derive(Debug, Clone, Copy)]
pub struct ContentLength(i32);

impl ContentLength {
    pub fn new(count: i32) -> Self {
        Self(count)
    }
}

impl Header for ContentLength {
    fn name(&self) -> headers::HeaderName {
        headers::CONTENT_LENGTH
    }

    fn value(&self) -> headers::HeaderValue {
        let count = if self.0 < 0 { -1 } else { self.0 };
        format!("{count}").into()
    }
}