How we call an struct inside of another struct as embedded?

Why we don’t call person field as embedded? “type user struct {  name  string  email string }   type admin struct {  person user  // NOT Embedding  level  string }” But in other cases like below we call it embedded: “type user struct {  name  string  email string }   type admin struct {  user… Read More How we call an struct inside of another struct as embedded?