// Copyright 2022 Google LLC // // Licensed under the Apache License, Version 2.0 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. use gpt_disk_types::{GptHeader, GptPartitionEntry, Guid, MasterBootRecord}; use std::mem; #[test] fn test_layouts() { assert_eq!(mem::size_of::(), 16); assert_eq!(mem::align_of::(), 4); assert_eq!(mem::size_of::(), 92); assert_eq!(mem::align_of::(), 1); assert_eq!(mem::size_of::(), 128); assert_eq!(mem::align_of::(), 1); assert_eq!(mem::size_of::(), 512); assert_eq!(mem::align_of::(), 1); }