From f5b57ea766dd9b1266391c32346ca38a62840c6c Mon Sep 17 00:00:00 2001 From: clizia Date: Mon, 11 Nov 2024 17:10:52 +0100 Subject: [PATCH] layoutted the file --- src/png.rs | 53 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 53 insertions(+) diff --git a/src/png.rs b/src/png.rs index 2767294..cca4a86 100644 --- a/src/png.rs +++ b/src/png.rs @@ -1,3 +1,56 @@ +use crate::{chunk::Chunk, chunk_type}; + +pub const STANDARD_HEADER: [u8; 8] = [137, 80, 78, 71, 13, 10, 26, 10]; + +struct Png { + signature: [u8; 8], + chunks: Vec, +} + +impl Png { + fn from_chunks(chunks: Vec) -> Png { + todo!() + } + + fn append_chunk(&mut self, chunk: Chunk) { + todo!() + } + + fn remove_first_chunk(&mut self, chunk_type: &str) -> Result { + todo!() + } + + fn header(&self) -> &[u8; 8] { + todo!() + } + + fn chunks(&self) -> &[Chunk] { + todo!() + } + + fn chunk_by_type(&self, chunk_type: &str) -> Option<&Chunk> { + todo!() + } + + fn as_bytes(&self) -> Vec { + todo!() + } +} + +impl TryFrom<&[u8]> for Png { + type Error = &'static str; + + fn try_from(value: &[u8]) -> Result { + todo!() + } +} + +impl std::fmt::Display for Png { + fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result { + todo!() + } +} + #[cfg(test)] mod tests { use super::*;