-
Notifications
You must be signed in to change notification settings - Fork 3
Open
Description
According to this VCR cassette files should be able to support base64 encoded strings too. This means we need to add support for base64_body to our Body type.
Examples
pub enum BodyKind {
Base64,
String,
}
pub struct Body {
pub encoding: Option<String>,
pub string: String,
pub kind: BodyKind,
}or
pub enum BodyString {
Base64(String),
String(String),
}
pub struct Body {
pub encoding: Option<String>,
pub string: BodyString,
}Metadata
Metadata
Assignees
Labels
No labels