Notice
Recent Posts
Recent Comments
목록디자인 패턴 (1)
NeuroWhAI의 잡블로그
[Rust] 데코레이터 패턴
데코레이터 패턴으로 HTML 코드를 표현한 예제입니다. https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=b0fb18d31a6e4da32f135a3970985efc trait Element { fn outer_html(&self) -> String; } struct Content { content: String } impl Content { fn new(content: &str) -> Content { Content { content: content.into() } } } impl Element for Content { fn outer_html(&self) -> String { self.content.clone() } } st..
개발 및 공부/설계
2018. 12. 30. 14:46