use crate::{header::HeaderValue, jwa::JsonWebSigningAlgorithm, sealed::Sealed};
#[derive(Debug)]
#[non_exhaustive]
pub struct Jws {
pub(crate) algorithm: HeaderValue<JsonWebSigningAlgorithm>,
pub(crate) payload_base64_url_encoded: Option<bool>,
}
impl Sealed for Jws {}