Skip to content

this error originates in the derive macro Dto #21

@male110

Description

@male110

pub struct PostVo{
title:String,
body:String
}

use dto_derive::Dto;
use crate::vo::post::PostVo;
#[derive(Dto)]
#[dto(request)]
#[dto(entity="PostVo")]
#[dto(map="body:content")]
#[dto(skip = "csrf_token")]
pub struct NewPost{
pub(crate) title:String,
pub(crate) content:String,
pub(crate) csrf_token:String,
}

#[derive(Dto)]
| ^^^ private field
|
= note: this error originates in the derive macro Dto (in Nightly builds, run with -Z macro-backtrace for more info)

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