Skip to content
This repository was archived by the owner on Mar 25, 2024. It is now read-only.
This repository was archived by the owner on Mar 25, 2024. It is now read-only.

QUESTION: decoded from blank dictionary field #399

Description

@jjeffcaii

I have an Endpoint struct following the codes below:

#[derive(Debug, Default, Clone, PartialEq, Eq, Serialize, Deserialize, Hash)]
pub struct ClientTLS {
    pub crt: Option<String>,
    pub key: Option<String>,
    pub sni: Option<String>,
}

#[derive(Debug, Clone, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct Endpoint {
    pub address: String,
    pub tls: Option<ClientTLS>,
}

I'm trying to parse from a blank tls field:

       // equals the json: {"address": "127.0.0.1:80", "tls": {}}
        let input = r#"
        address: 127.0.0.1:80
        tls:
        "#;

        let endpoint: Endpoint = serde_yaml::from_str(input).unwrap();

        println!("endpoint: {:?}", endpoint);
        // will print: Endpoint { address: "127.0.0.1:80", tls: None }

My expected value is the tls field should be Some( ClientTLS: {crt: None, key: None, sni: None} ) like the behavior of serde_json, but it seems decoded as None.

How to fix my codes to return the expected value?

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions